Print Diamond [not easy]

input = n的话,会打印出2n的rows。

Print Diamond [not easy]_第1张图片


以前都没怎么练过这种打印题。。。有一点懵逼。

他这里用了一个space 变量记录每一行应该有多少个空格! 这个套路太深了。。。原来每一行的空格before first *就是

n - row number!


异常的Tricky啊。 比如说print *的时候后面要加一个space. print(* )


space这个变量太重要了!!!我一开始的时候是设space = (n- i) /2  比如第一行=5-0/2=2 完全是错的。我本来想一行n个格子,减去星星的数量,就是要放在前面padding的。

但是好像不是这么个意思! 一行总共似乎可以有2N的东西。

 而且没有print ("* ").

星星都vertically重叠了。

Print Diamond [not easy]_第2张图片
Print Diamond [not easy]_第3张图片
Print Diamond [not easy]_第4张图片

你可能感兴趣的:(Print Diamond [not easy])