👩💻 알고리즘/🐢 PYTHON
for문 구구단 프로그램
오브 🧙♂️
2023. 9. 12. 02:20
for i in range(1,10):
for j in range(1,10):
print("{} * {} = {}". format(i,j,i*j))