标签:inpu 菱形 code span 脚本 col python 输入 input
#输入菱形最宽的行所在的行数,打印菱形 m = int(input(">>>")) for n in range(m): print(" "*(m-n)+"*"*(1+2*n)+" "*(m-n)) for a in range(m,-1,-1): print(" "*(m-a)+"*"*(1+2*a)+" "*(m-a))
标签:inpu 菱形 code span 脚本 col python 输入 input
原文地址:https://www.cnblogs.com/KunGe-13/p/10203216.html