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