输出如下图形,程序中横线部分应该填( )。
*
* *
* * *
* * * *
* * * * *
for i in range(1, 6):
for j in range(________):
print("*", end = ' ')
print()
6
7
j
i