python
Rjex
这个作者很懒,什么都没留下…
展开
-
Python:for循环练习
1.引例magicians = ["alice",'david',"carolina"]for magician in magicians: print(magician) #for循环有‘:’,for循环会执行每个缩进 print(magician.title()) #该缩进也在for循环里面print("Thank you,That was a great magic sh...原创 2019-11-19 18:35:54 · 391 阅读 · 0 评论 -
Python:列表练习程序
1. 对以下列表中的第一个元素首字母大小并输出,输出最后一个元素bicycles = ['trek','cannondale','redline']print(bicycles[0].title())#对bicycles的第一个元素首字母大写并输出print(bicycles[-1].title())#索引-1代表最后一个元素answer:2. 输出列表中的所有元素motorc...原创 2019-11-19 18:13:31 · 856 阅读 · 0 评论 -
Python:Hello World程序练习
Hello World程序练习print()为输出函数.title()以首字母大写的形式输出字符串message = "hello python world!"print(message.title()).upper()以全大写的形式输出字符串.lower()以全小写的形式输出字符串message = "hello python world!"print(message.uppe...原创 2019-11-19 17:29:17 · 369 阅读 · 0 评论