该程序旨在根据用户输入执行两个程序。如果用户输入1,则执行program_a。如果用户输入2,则执行program_b。如何使用,如果用户输入任何其他整数,它会随机选择1或2之间?
import random
choice = int(input("Enter the number for your choice: "))
r = random.randint(1,2)
if choice == 1:
program_a()
elif choice == 2:
program_b()
else:
choice = r
答案 0 :(得分:1)