A、Have a try
B、Sure
C、Don't go, please
D、No, thanks
第1题:
第2题:
第3题:
#让程序给你随机选择一种饮品 ######FILL###### import ____ list_drink = ['Coffe', 'water', 'orange juice', 'tea'] ######FILL###### my_drink = random.____(list_drink) print('my drink is :',my_drink)
第4题:
第5题:
#让程序给你随机选择一种饮品 ######FILL###### import ____ list_drink = ['Coffe', 'water', 'orange juice', 'tea'] my_drink = random.choice(list_drink) print('my drink is :',my_drink)
第6题:
将变量hour的个位送入变量gw的语句是:()
A.gw= hour;
B.gw=hour/10;
C.gw=hour%10;
D.gw== hour%10;