Variable 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 MoreWhat are variables?
Jun 28,97In programming, variables are storage locations that are used to store information that can later be referenced and manipulated. You …
Read MoreUse comments
Jun 28,97You can use comments in your Python source code in order to document it. With comments, you can remind yourself …
Read MoreWrite your first program
Jun 27,97In this lesson, you will use Python IDLE to write your first program. Start IDLE and you should get a shell window, where …
Read More