Member 12388676 Ответов: 1

Как создать пользовательское меню и иметь выбор из разных вопросов


print( "Hello and welcome to my Quiz\n")



ans= True
while ans:
        print('''''
        1.Soccor Questions
        2.Science Questions
        

        Press enter to quit
        ''')
ans=input("Select a Question Package")
if ans== "1":
        print("You have choosen Soccor Questions")
        elif ans=="2":
        print("You have choosen Science Questions")
        

#Soccor Questions
one = input("All four home nations – England, Scotland, Wales and Northern Ireland – played at the 1958 World Cup. Where did it take place?\n")
two = input("How many of the 20 clubs in MLS are based in Canada?\n")
three = input("In which country would you find the world's largest football stadium (by capacity)?\n")
four = input("In 2002 on the same day as the World Cup final, 'The Other Final' took place between the world's two lowest ranking nations. Who won the game?\n")
five = input("Who finished the 2014-15 Ligue 1 season as top scorer?\n")
six = input("Which club have won the most Serie A titles?\n")


#Science Questions
seven = input("Brass gets discoloured in air because of the presence of which of the following gases in air?\n")
eight = input("Chlorophyll is a naturally occurring chelate compound in which central metal is ?\n")


#Answer to Soccor Questions
onea = "Sweeden"
twoa = "Three"
threea = "North Korea"
foura = "Bhutan"
fivea = "Alexandre Lacazette"
sixa = "Juventus"

#Answers to Science Questions
sevena = "Hydrogen sulphide"
eighta = "Bromine"            




print("")

# User will be notified if answer is correct or wrong
if one == onea:
	print("1.This is correct")
else:
	print("1.Wrong Answer")
	
if two == twoa:
	print("2.This is correct")
else:
	print("2.Wrong Answer")
	
if three == threea:
	print("3.This is correct")
else:
	print("3.Wrong Answer")
	
if four == foura:
	print("4.This is correct")
else:
	print("4.Wrong Answer")

if five == fivea:
        print("5.This is correct")
else:
        print("5.Wrong Answer")

if six == sixa:
        print("6.This is correct")
else:
        print("6.Wrong Answer")

if seven == sevena:
        print("7.This is correct")
else:
        print("7.Wrong Answer")

if eight == eighta:
        print("8.This is correct")
else:
        print("8.Wrong Answer")



Что я уже пробовал:

я попытался посмотреть словарь и список, но не получил никакой надежды, так как я не совсем понял его, я хочу знать, как выбрать из вопросов soccor к научным вопросам и связать их с их ответами любая помощь, пожалуйста, как я только новичок в python ??

Richard MacCutchan

Вам нужно создать некоторые подпрограммы или функции, которые содержат различные детали предмета. Google для учебника python, и вы найдете много примеров кода.

Member 12388676

Да я понимаю но на что мне смотреть в основном

Member 12388676

Пожалуйста я ничего не знаю так как я только новичок в python nd nt конечно же должен был начать искать информацию

1 Ответов

Рейтинг:
2