py05-python基础-元组
1、元组:
作用:存多个值,对比列表来说,是不可变数据类型,主要是用来读。
定义:()
name=(1,2,3,4)
#name=tuple((1,2,3,4))
print(type(name))
2、常用操作
1、切片:切割出一个子元组
name=(1,2,3,4) print(name[1:4])
2、长度:len
name=(1,2,3,4) print(len(name))
3、包含:in
name=(1,2,3,4) print(1 in name)
4、查看下标:
name=('egon',18,'male') print(name.index('egon'))
5、统计元组的个数:
name=('egon',18,'male','egon') print(name.count('egon'))
6、练习:简单购物车
实现打印商品详细信息,用户输入商品名和购买个数,则将商品名,价格,购买个数加入购物列表,如果输入为空或其他非法输入则要求用户重新输入
msg_dic={
'apple':10,
'tesla':100000,
'mac':3000,
'lenovo':30000,
'chicken':10,
}
msg_dic={ 'apple':10, 'tesla':100000, 'mac':3000, 'lenovo':30000, 'chicken':10, } goods_l=[] while True: for key in msg_dic: print('Name:{name} Price:{price}'.format(price=msg_dic[key],name=key)) choice=input('Your Goods>>: ').strip() if len(choice) == 0 or choice not in msg_dic: continue count=input('Your Goods count>>: ').strip() if count.isdigit(): count=int(count) goods_l.append((choice,msg_dic[choice],count)) print(goods_l)
等价于
msg_dic={
'apple':10,
'tesla':100000,
'mac':3000,
'lenovo':30000,
'chicken':10,
}
goods_l=[]
while True:
for key,value in msg_dic.items():
# print(key,value)
print('Name:{name} Price:{price}'.format(price=value,name=key))
choice=input('Your Goods>>: ').strip()
if len(choice) == 0 or choice not in msg_dic:
continue
count=input('Your Goods count>>: ').strip()
if count.isdigit():
count=int(count)
goods_l.append((choice,msg_dic[choice],count))
print(goods_l)
www.sysgit.com