How to print the hollow pyramid pattern?

前端 未结 0 404
故里飘歌
故里飘歌 2021-02-05 15:13

So, I have this code

num = int(input("Enter the Number: "))

for i in range(1, num+1):
    for j in range(0, i):
        print(" ", end="         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题