In this post, you will learn how to work with comments so that you can use that same knowledge and thus evolve. The comments (of one or multiple lines) are used to comment everything that is necessary for someone else to understand our code. #...
In this post, you will learn how to work with something more about strings so that you can use that same knowledge and thus evolve. \n New line \t New tab (indentation) len(variable) Returns the number of characters (in case of a string) upper() Turns...
In this post, you will learn how to work with assignment operators so that you can use that same knowledge and thus evolve. a += 3 a = a + 3 b -= 2 b = b - 2 c *= 2 c = c...
In this post, you will learn how to work with integer, decimal (float), string and boolean variables so that you can use that same knowledge and thus evolve. a variable is an object (a position located in the memory) that represents a value or an...
In this post, you will learn how to work with arithmetic operators so that you can use that same knowledge and thus evolve. + Addition - Subtraction * Multiplication / Division % Rest ** Exponent print('Addition:', 10 + 10) # Addition: 20 print('Subtraction:', 10.5 -...
In this post, you will learn how to work with the print() function and with strings so that you can use that same knowledge and thus evolve. the print() function prints its entire contents to the command line; a string is a set of characters...