Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson5_7
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
5e36d0e3ff5d37ca7107181b87f6cce674228551
Switch branch/tag
lesson5_7
diy2.py
Find file
Blame
History
Permalink
save project
· 2c9204ec
BellCodeEditor
committed
2 years ago
2c9204ec
diy2.py
82 Bytes
Edit
1
2
3
i
=
1
#行 #列
for
j
in
range
(
1
,
9
,
1
):
print
(
i
,
"*"
,
j
,
"="
,(
i
*
j
),
end
=
"/ "
)