Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 13, 2020 12:51
Embed
What would you like to do?
嵌套
# 打印99乘法表
for i in range(1, 10):
for j in range(1, 10):
p = i * j
print("%d*%d = %-2d " % (i, j, p), end="")
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment