Commit 20dee1d8 by BellCodeEditor

auto save

parent 0db28b07
Showing with 21 additions and 0 deletions
# print(9 and 1 and True)
# print(not 0)
# print(0 or 9 or 10)
# print(2 and 4 or 5 and not 5)
# print(3 and False or 5 and not 3)
# a=5
# a+=3+4
# print(a)
a=len("张三李四ab9")
b=len("122334")
print(a>b)
\ No newline at end of file
import turtle
a=turtle.Pen()
turtle.screensize(800,600,"green")
a.color("red","yellow")
a.begin_fill()
a.circle(100,steps=5)
a.end_fill()
turtle.done()
\ 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