Arithmetic operators
Jul 1,97The arithmetic operators in Python are used to perform math operations, such as addition, subtraction, multiplication, and division. Python also …
Read MoreGet the current date and time
Jun 30,97You can get the current date and time using Python. However, you will need to import a module called datetime. …
Read MoreStrings
Jun 30,97Strings in Python can be used to store a contiguous set of characters. To define a string, you simple type the characters …
Read MoreNumeric variables
Jun 30,97Numeric variables in Python are used to store numbers. Numbers are usually stored as integers, floating-point values, or complex numbers, depending …
Read MoreVariable names
Jun 28,97There are couple of rules you need to be aware of when naming your variables: 1. you can use only …
Read MoreVariable data types
Jun 28,97Variables in Python can be of a different data type. The data type of a variable is important because it …
Read More
