-1
所以我是新來的python,我試圖從本質上「畫棋盤遊戲」,但是我需要它用乘法打印新行。這是到目前爲止我的代碼:multiplcatoin的新行(python3)
x=int(input("How many columns? "))
y=int(input("How many rows? "))
z="|"
q="---"
f=((z + q)*x)+z
print(f*y)
我想是有行之間的換行,像這樣:
|---|---|---|
|---|---|---|
|---|---|---|
我想:
print('\n', f,'\n', f, '\n', f)
如何把行之間的換行符?
非常感謝! – bubbub