python将'none'添加到正在打印的函数的末尾?

时间:2017-01-05 18:00:04

标签: python

xsize = int(input('square hash dimension: '))
def square():
    i=0
    while i < xsize:
        x = '#'*xsize  
        print(x)       
        i+=1

print(square())

//尝试编写几行来重新创建维度输入以从哈希中生成一个正方形,但是当-say,2输入为'xsize'时的结果: (imgur链接) output from code

不确定为什么'没有'被添加,但我对整体编程很新:P ty提前!

0 个答案:

没有答案