var1, var2, var3 = 1, 2, 31.2'twelve'"twelve"True or Falsetype()int()float()str()print()len()title()islower()count()format()defdef myfunction():returnif age < 16:else:elif age
... [Show More]
>= 16 and age <= 18:
True and False
True or False
not(True and False)
myNumbers = [1, 4.8, 7, 9.2, 3, 0]
mylist[0]
mylist[-1]
mylist[1:3]
mylist[:3]
mylist[3:]
[Show Less]