编写代码,打印图行
*
**
***
****
*****
i= 1 line = int(input('请输入行数')) while i <= line: print('*'*i) i += 1
for item in range(1, 6): print(item * "*")