When trying print something off of a random letter it is only printing the first if statement in each of my functions. Does anyone know how to make it look through each if statement instead of choosing the first one? THX
import string
import random
rlet1 = random.choice(string.ascii_letters)
rlet2 = random.choice(string.ascii_letters)
rlet3 = random.choice(string.ascii_letters)
def rmor1():
if rlet1 == ("a") or ("A"):
print("1")
elif rlet1 == ("b") or ("B"):
print("2")
else:
print("3")
def rmor2():
if rlet2 == ("a") or ("A"):
print("1")
elif rlet2 == ("b") or ("B"):
print("2")
else:
print("3")
def rmor3():
if rlet3 == ("a") or ("A"):
print("1")
elif rlet3 == ("b") or ("B"):
print("2")
else:
print("3")
rmor1()
rmor2()
rmor3()