Commit 9318d03b by BellCodeEditor

save project

parent 532735af
Showing with 47 additions and 10 deletions
a=0
b=False
print(a==b)
\ No newline at end of file
from turtle import * # from turtle import *
c = input() # c = input()
color(c) # color(c)
pensize(3) # pensize(3)
pendown() # pendown()
for i in range(5): # for i in range(5):
fd(100) # fd(100)
right(144) # right(144)
done() # done()
\ No newline at end of file '''import random
p = input("请出拳/石头/剪刀/布")
print("玩家出拳"+p)
l = ["石头","剪刀","布"]
c = random.choice(l)
print("电脑出拳"+c)
if p == c:
print('平局')
elif p=='石头':
if c=='剪刀':
print("玩家赢")
if c=='布':
print("电脑赢")
elif p=='布':
if c=='剪刀':
print("玩家输")
if c=='石头':
print("电脑输")
elif p=='剪刀':
if c=='':
print("玩家赢")
if c=='布':
print("电脑赢")'''
---___----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGYI8
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