• This project
    • Loading...
  • Sign in

정나리 / Book_share

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Book_share
  • Desktop
  • opensw1
  • opensw1.py
  • Ellie's avatar
    add opensw1.py · a0e78ee2
    a0e78ee2
    Ellie authored 2021-09-21 11:48:23 +0900
opensw1.py 164 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/usr/bin/env python
# coding: utf-8

# In[2]:


for i in range(2,10) :
    for j in range(1,10) :
        print(i, "*", j , "= " ,i*j)
    print()


# In[ ]: