python中如何用for循环写一个三角形?

2024-11-15 13:32:52
推荐回答(1个)
回答(1):

代码如下:

for i in range(1,6):


print (2*i-1)*'.'

Python for 循环语句流程图: