热线电话:13121318867

登录
2019-03-20 阅读量: 882
如何用python输出阶梯形矩阵

以下代码用以实现输出连续数字的阶梯形矩阵


# Function to demonstrate printing pattern of numbers
def contnum(n):

# initializing starting number
num = 1

# outer loop to handle number of rows
for i in range(0, n):

# not re assigning num
# num = 1

# inner loop to handle number of columns
# values changing acc. to outer loop
for j in range(0, i+1):

# printing number
print(num, end=" ")

# incrementing number at each column
num = num + 1

# ending line after each row
print("\r")

n = 5

# sending 5 as argument
# calling Function
contnum(n)


输出:
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15

2.3677
5
关注作者
收藏
评论(0)

发表评论

暂无数据