摘要:
1、函数input()的工作原理 函数input() 让程序暂停运行,等待用户输入一些文本。获取用户输入后,Python将其存储在一个变量中,以方便你使用。 1.1、使用int()来获取数值输入 number = input("Enter a number, and I'll tell you if 阅读全文
摘要:
1、遍历整个列表 magicians = ['alice', 'david', 'carolina'] for magician in magicians: print(magician.title() + ", that was a great trick!") 注意 magician 在循环外面 阅读全文