马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
width=input('plesae enter width:')
price_width=10
item_width=width-price_width
header_format='%-*s%*s'
format='%-*s%*.2f'
print '='*width
print header_format%(item_width,'Item',price_width,'price')
print '-'*width
print format%(item_width,'apple',price_width,0.4)
print format%(item_width,'pears',price_width,0.5)
print format%(item_width,'Cantaloupes',price_width,1.92)
这段代码是书上的,主要用于对格式化字符串的理解。
字符串中可以通过%添加格式化字符,“abc%s”%(想要加入的字符)
'-'代表向左对齐,'*'代表字符串长度由元组决定。
字典的使用people={ 'Beth':{'phone':'9103','addr':'bar street 42'}}
lable={'phone':'phone number','addr':'address'}
name=raw_input('Name:')
request=raw_input('Phone number(p)or address (a)?')
if request=='p':
key='phone'
if request=='a':
key='addr'
if name in people:print "%s's %s is %s"\
%(name,lable[key],people[name][key])
name.get('')
还是先来一段书上的代码。
我觉得字典的使用主要就是‘key’的使用,你可以通过‘key’访问这个字典里的任意一个成员。所以字典的参数是‘key’,dic['key']不再和list一样
用位置做参数。
我们可以用key()这个函数查看字典里的‘key’。
|