Commit e14cb5cb by BellCodeEditor

save project

parent 3fe49f07
Showing with 14 additions and 22 deletions
name = '刘强'
power = 66
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)
++ "b/cfg.py/\344\272\206"
import random
list=["石头","剪刀","布"]
computer=random.choice(list)
print(computer)
player=input("请出拳")
print("玩家出拳"+player)
if player==computer:
print("平局")
elif player=="剪刀" and computer=="布":
print("玩家胜利")
elif player=="石头" and computer=="剪刀":
print("玩家胜利")
elif player=="布" and computer=="石头":
print("玩家胜利")
else:
print("玩家失败")
a=input("请输入姓名")
b=input("请输入成绩")
print(a+"的英语成绩"+b)
\ 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