You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if, elif, else statement
allows you to make decision based on something is true or not for example:
if the group requires 5 members you could do:
if group == 5:
print("accepted")
else:
print("member not accepted")