lakhs = 3
thousands = 92
hundreds = 3
tens = 7
ones = 5
chosen_system = input("Choose a system Indian/International: ")
if chosen_system.lower() == "indian":
print (f"{lakhs},{thousands},{hundreds},{tens},{ones}")
else:
print(f"{lakhs * 100000 + thousands * 1000 + hundreds * 100 + tens * 10 + ones}")
print ("Check if misspell or that system that you enetered is not in the code:")
magnitude = input ("Choose wheather the number should be in greatest or smallest order: ")
if magnitude.lower() == "greatest":
print (975,332)
elif magnitude.lower() == "smallest":
print ("233,579")
else:
print ("Not a option, choose greatest or smallest only")
age = input("What's your age?")
marks = input ("Marks")
place = input("Where do you live?")
print ("age,marks,place")
So I wrote this and really need help. I need a random number selcter