python installation on windows
python installation on windows Since windows don’t come with Python preinstalled, it needs to be installed explicitly. Here we will
Read morepython installation on windows Since windows don’t come with Python preinstalled, it needs to be installed explicitly. Here we will
Read moreProgramming languages A programming language is a means of communication for the user to communicate with the computer system. The
Read morePython Arithmetic Operators Example Here is example to show how arithmetic operation can be performed :- #!/usr/bin/python a = 21
Read moreWhat are functions? Functions are a convenient way to divide your code into useful blocks, allowing us to order our
Read moreAs programs get bigger and more complicated, they get more difficult to read. Formal languages are dense, and it is
Read moreDecision making is anticipation of conditions occurring while execution of the program and specifying actions taken according to the conditions.
Read moreThere are used to compare the memory locations of two operators. Example: #!/usr/bin/python a = 20 b = 20 if
Read moreExample: #!/usr/bin/python a = 10 b = 20 list = [1, 2, 3, 4, 5 ]; if ( a in
Read moreExample: #!/usr/bin/python x = True y = False print(‘x and y is’,x and y) print(‘x or y is’,x or y)
Read moreExample: #!/usr/bin/python a = 60 # 60 = 0011 1100 b = 13 # 13 = 0000 1101 c =
Read more