Commit b8db7bdc by BellCodeEditor

auto save

parent 98f24605
Showing with 18 additions and 18 deletions
dict = {'AK47':10000,'靓仔牛奶'99.9,'RPG':30000'农夫山贼'999,'AWM':20000,'氢弹'999}
a=input('你想买什么呢?')
if a in dict:
print('叮咚~您的'+a+'需要支付'+str(dict[a])+'元~')
else:
print('商品未上架~')
\ No newline at end of file
# 这是悟空为花果山小猴做臂力测试的程序代码 dict_hero={'猴兔崽子'10,'猴王丹'21,'猴SB'22,'猴队长'29,'猴王八蛋'0}
name=input('你叫啥名啊?') print(dict_hero)
power=int(input('你臂力多少啊?')) print(dict_hero['猴队长'])
list_hero=['猴三',10,'猴一',21,'猴五',22,'猴队长',29,'猴七',30] dict_hero['猴队长']=19999999
for i in range(len(list_hero)):
if i%2==1 and list_hero[i]>=power:
list_hero.insert(i-1,name)
list_hero.insert(i,power)
break
print(list_hero)
# 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典
dict_hero=
print(dict_hero) print(dict_hero)
\ No newline at end of file
# 直接运行以下代码,说说你的发现: dict_hero={'猴兔崽子'10,'猴王丹'21,'猴SB'22,'猴队长'29,'猴王八蛋'0}
list_hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98] print(dict_hero)
dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98} print(dict_hero['猴兔崽子'])
print(len(list_hero)) dict_hero['猴队长']=19999999
print(len(dict_hero)) print(dict_hero)
\ No newline at end of file \ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment