Commit f1e334f1 by BellCodeEditor

auto save

parent b634e70b
Showing with 20 additions and 5 deletions
a=["a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g","a","s","d","f","g"]
b=["j"]
b.extend(a[:])
print(b)
\ No newline at end of file
hero=["m416",39,"pkm",40,"akm",45,"Kar98k",199,"m24",259,"awm",299,"amr",309]
name="aug"
power=40
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i,name)
hero.insert(i,power)
break
print(hero[len(hero)-6:])
\ No newline at end of file
hero=["m416",39,"pkm",40,"akm",45]
name="aug"
power=40
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:])
\ 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