笨方法学Python 习题 32: 循环和列表

本文探讨Python中的循环与列表使用,重点在于range函数的理解和列表的多种操作。介绍了如何直接使用range(0,6)赋值给列表,以及Python列表除append外的其他操作。同时解答了如何创建二维列表、列表与数组的区别、for循环的工作原理以及range函数的迭代范围。通过实例,鼓励读者在遇到不理解的功能时,利用Python命令行进行实践探索。" 122029344,7303234,Linux内存性能:Buffer与Cache的区别解析,"['Linux系统', '内存管理', '性能优化']
摘要由CSDN通过智能技术生成
#!usr/bin/python
# -*-coding:utf-8-*-

the_count = [1, 2, 3, 4, 5]
fruits = ['apples', 'oranges', 'pears', 'apricots']
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']

for number in the_count:
	print ("This is count %d" % number)

for fruit in fruits:
	print ("A fruit of type:%s" % fruit)

for i in change:
	print ("I got %r"% i)

elements = []

for i  in range(0,6):
	print ("Adding %d to the list." %i)
	elements.append(i)

for i in elements:
	print ("Element was: %d" %i)

运行结果如下:

$ python ex32.py
This is count 1
This is count 2
This is count 3
This is count 4
This is count 5
A fruit of type: apples
A fruit of type: oranges
A fruit of type: pears
A fruit of type: apricots
I got 1
I got 'pennies'
I got 2
I got 'dimes'
I got 3
I got 'quarters'
A
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值