Commit e6ff6e37 by BellCodeEditor

auto save

parent 3515f1dd
Showing with 22 additions and 2 deletions
# 我们都爱夸夸夸 # 我们都爱夸夸夸
\ No newline at end of file name = input("你叫什么名字呀?")
input(name + "你好呀")
\ No newline at end of file
import turtle
l = input("你想画正几边形?")
n = input("边长是多少?")
pen = turtle.Pen()
for i in range(int(l)):
pen.forward(int(n))
pen.right(360/int(l))
turtle.done()
\ No newline at end of file
import random
computer_list=["石头","剪刀","布"]
computer = random.choice(computer_list)
player = input("玩家出拳:(石头,剪刀,布)")
input("玩家出"+player)
input("电脑出"+player)
\ 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