Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
bellcode
/
lesson3-4-1_DIY1
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
1bcdce8a7ae4e6a158a3051a917e7f86248f0770
Switch branch/tag
lesson3-4-1_DIY1
555.py
Find file
Blame
History
Permalink
save project
· 1bcdce8a
BellCodeEditor
committed
4 years ago
1bcdce8a
555.py
74 Bytes
Edit
1
2
3
4
i
=
0
while
(
i
%
3
!=
2
or
i
%
5
!=
3
or
i
%
7
!=
2
):
i
=
i
+
1
print
(
i
)