while True:
    try:
        c=int(input())
        a,b=1,1
        while a<=c:
            while b<=c:
                print("* ",end="")
                b+=1
            print("")
            b=1
            a+=1
    except:
        break

  • 看的黑马里 这么入门的,
  • 但是大神里 的方法 更符合py的简洁,for i in range(1,i+1) *i个