Keywords
Loop with condition and increment: for
To load a module: import
Conditional statement (one word): if
Function to convert a string to an integer: int()
Loop with only condition: while
Text data type: string
Function to get the length of a string: len()
Keyward to send a value back from a function: return
End the current iteration of a loop: continue
Declare a function: def
Determine wether two objects are the same object(not just value): is
Function to write to the screen: print()
Exit the current loop: break
Data type for True and False: boolean
Function to generate a sequence of numbers: range()
Operators - Evaluate the Expressions
1 + 2 * 3: 7
3 ** 3: 3^3 or 3*3*3 = 27
'7' == 7: False
'A' + 'B': 'AB'
True and False: False
len('Hello'): 5
3 != 4: True
10 // 3: 3
'2' + '2': '22'
False or True: True
'3' * 4: '3333'
2 / 3: ~ 0.666666
5 >= 5: True
(2 + 3) * 2: 10
13 % 7: 6