Commit 9a36be95 by BellCodeEditor

save project

parent 099a0303
b=['1','2','3','4']
b.remove('4')
print(b)
a=['as']
a.insert(1,'4')
print(a)
a= ['as']
c=['df','gh']
a.extend(c)
print(a)
name=input('12345?')
power=int(input('67890'))
hero=['这样',30,'刚刚',37,'涵涵'52,'和分发给',89,'比较'98']
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i-1,name)
hero.insert(i,power)
break
print(hero[-6:])
dict={'希粑粑'3,'六仔':4,'尿泉'1,'黑丝':3,'小妮':2,'奶奶':4,} dict={'希粑粑'3,'六仔':4,'尿泉'1,'小妮':2,'奶奶':4,}
k=input('你想吃史') k=input('你想吃史')
if k in dict: if k in dict:
print('世界地图'+k+'枫叶卡成为语言'+str(dict[k])+'原~') print('世界地图'+k+'枫叶卡成为语言'+str(dict[k])+'原~')
......
a=['1']
b=['2','3','4','5','6']
a.extend(b[2:5])
print(a)
\ No newline at end of file
++ "b/\345\220\216\345\215\263\345\217\257\346\216\245\345\217\243\345\217\257\346\240\271\346\215\256\345\223\246\345\223\246i\345\223\255\345\224\247\345\224\247.py"
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