python基础
qq_41876038
这个作者很懒,什么都没留下…
展开
-
python之路(一)
一、列表切片1、选择你在本章编写的一个程序,在末尾添加几行代码,以完成如下任务。 打印消息“The first three items in the list are:”,再使用切片来打印列表的前三个 元素。 打印消息“Three items from the middle of the list are:”,再使用切片来打印列表中 间的三个元素。 打印消息“The last...原创 2019-02-27 21:30:55 · 770 阅读 · 0 评论 -
python之路(二) 2019.2.28
一、函数1、了不起的魔术师:在你为完成练习 8-9 而编写的程序中,编写一个名为 make_great()的函数,对魔术师列表进行修改,在每个魔术师的名字中都加入字样“the Great”。调用函数 show_magicians(),确认魔术师列表确实变了。def make_great(l): i=len(l) for x in range(i): con...原创 2019-03-01 16:40:34 · 292 阅读 · 0 评论