标签: python
我正在编写一个程序来产生这样的预期输出:
我拥有所有代码:
a=1 while a!=6: for n in range(a): print("@") a=a+1
但是每次for循环运行后我都需要换行。在那儿 一种方法吗?