标签:总结 最新 quit 根据 tle prompt 解释 += 标识符
Python自带了一个在终端窗口中运行的解释器,无需保存并运行整个程序就能尝试运行Python代码片段。
- >>>print("Hello Python interpreter!")
Hello Python interpreter!
- >>>0.1+0.1
0.2- >>>0.2+0.2
0.4
*motorcycles=[‘ha‘,‘yam‘,‘su‘]
print(motorcycles)
del motorcycles[0]
print(motorcycles)
[‘ha‘,‘yam‘,‘su‘]
[‘yam‘,‘su‘]
这里就运用del删除了motorcycles中的第一个元素“ha”
cars = [‘au‘,‘bm‘,‘sub‘,‘toyo‘]
for car incars:
if car == ‘bm‘:
print (car.upper())
elif :
print (car.title())
current_number = 1
while current_number<=5:
print(current_number)
current_number += 1
while True:
city=input(prompt)
if city == ‘quit‘:
break
continue语句用来调过当前循环的剩余语句,然后继续下一轮循环。
小结:
接触这门语言的时间并不长 ,了解的仅仅是些皮毛,Python的简单深受很多人喜爱,编程的学习是日积月累的,一步一步会做的更好。 以上的代码是借鉴的参考书《Python编程从入门到实践》
标签:总结 最新 quit 根据 tle prompt 解释 += 标识符
原文地址:http://www.cnblogs.com/liyuan1988/p/7671253.html