换行符在单独的打印语句中

时间:2018-06-26 02:31:41

标签: python

我正在编写一个程序来产生这样的预期输出:

Just a pattern of the @ symbol

我拥有所有代码:

a=1
while a!=6:
    for n in range(a):
        print("@")
    a=a+1

但是每次for循环运行后我都需要换行。在那儿 一种方法吗?

0 个答案:

没有答案