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提前!