python -基本編程題

一、讓Python幫你隨機選一個飲品吧! import random listC = ['加多寶', '雪碧', '可樂', '勇闖天涯', '椰子汁'] print(random.choices(listC), type(random.choices(listC))) # choices函數返回列表類型數據 print(random.choice(listC), type(random.cho
相關文章
相關標籤/搜索