and: A logical operator
as: To create an alas
assert: For debugging
break: To break out of loop
class: To define a class
continue: To continue to the next iteration of a loop
def: To define a function
del: To delete an object
elif : Used in conditional statements, same as else if
else: Used in conditional statements
except: Used with exceptions, what to do when an exception occurs
false: Boolean value, result of comparison operations
finally: Used with exceptions, a block of code that will be executed no matter if
there is an exception or not
for: To create a for loop
from: To import specific parts of a module
global: To declare global variable
if: To make a conditional statements
import: To import a module
in: To check if a value is present in a list tuple, etc
is: To test if two variables are equal
lambda: To create an anonymous function
None: Represents null value
nonlocal: to declare a non-local variable
not: A logical operator
or: A logical operator
pass: A null statement a statements that will do nothing
raise: To raise an exception
return: To exit a function and return a value
True: Boolean value , result of comparison operations
try: To make a try , except statements
while: To create a while loop
with: Used to simplify exception handing
yield: To end a function, returns a generator