how to write more than one conditional if statement in python code example
Example: how to list more than 1 condition in an if statement python
bool = True
str = 'Helo'
int = 9
if bool == True and str == 'Helo':
print('Hello World')
if bool == False or int == 9:
print('Success')