摘要:
Summation Write a program that finds the summation of every number from 1 to num. The number will always be a positive integer greater than 0. For exa 阅读全文
摘要:
一个简单的字典 alien_0 = {'color': 'green', 'points': 5} print(alien_0['color']) print(alien_0['points']) 使用字典 # 在Python中,字典用放在花括号 {} 中的一系列键—值对表示 alien_0 = { 阅读全文
摘要:
遍历整个列表 # for 循环 编写for 循环时,选择有意义的列表名称大有帮助 # 如下面的mgicians表示魔术师列表 一般性列表,像下面这样编写for 循环的第一行代码是不错的选择: magicians = ['alice', 'david', 'carolina'] for magicia 阅读全文
摘要:
列表是什么 # 用[]来表示列表,列表中的元素用 , 隔开 list = ['element_one', 'element_two'] #访问列表元素 程序员的数学中开头的数字不是1,而是0 print(list[0]) # 打印list列表的第一个元素 # 访问列表的最后元素的方法 print(l 阅读全文