Commit 69b16d2b by BellCodeEditor

auto save

parent ff056a0f
Showing with 25 additions and 23 deletions
username = "python"
userpassword = "123456"
i=3
while True:
if i>0:
name=input("hhh")
password=input("jjj")
i-=1
if name == username and password == userpassword:
print("fuck")
break
if name != username:
print("shet")
continue
if password !=userpassword:
print("ccc")
print("jjhj"+str(i)+"hhh")
else:
print("hhgh")
exit()
print("hjhfh")
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.write("诺伊,\nturle真好用,\n我会在顶上写字了!",font=("Times",40,"normal"))
pen.hideturle()
turtle.done()
\ No newline at end of file
import pygame
from pygame import locals
pygame.init()
screen=pygame.display.set_mode((660,480),0,32)
while True:
for event in pygame.event.get():
if event.type==locals.QUIT:
exit()
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