Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson6-5-1
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
20dee1d8
authored
Jan 11, 2023
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
0db28b07
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
1.py
2.py
1.py
0 → 100644
View file @
20dee1d8
# 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
2.py
0 → 100644
View file @
20dee1d8
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment