You can have if statements inside if statements, this is called nested if statements.
if condition1:
#
if condition2:
#
if condition3:
#
else:
#
else:
#
elif condition4:
if condition5:
#
else:
#
else:
#
#nestedif #learningpython #python