pyhton 初學 楊輝三角

2021-10-17 05:13:48 字數 1192 閱讀 1305

```python

在這裡插入**片

```# 楊輝三角

defmain()

:# 主函式內 輸入行數

num=

int(

input

('num of rows:'))

# yh是num個組成的列表,num是int型別的變數

yh=[[

]]*num

print

(type

(yh)

)print

(f'num='

)print

(f'yh='

)print

(f'len of yh is '

)# row從[0,num)迴圈

for row in

range

(num)

:# 第row行的楊輝(yh)三角形擁有row+1個空值

yh[row]=[

none]*

(row+1)

# 每行有幾個元素,就迴圈到幾(列)

for col in

range

(len

(yh[row]))

:# 第一列和最後一列永遠是1

if col==

0or col==row:

yh[row]

[col]=1

pass

# 其他的行和列都是上面的兩個元素的累加和

else

: yh[row]

[col]

=yh[row-1]

[col]

+yh[row-1]

[col-1]

print

(yh[row]

[col]

,end=

'\t'

)pass

print()

pass

print

('****************************************==='

) yh[row]=[

none]*

(row+1)

print

(yh[row]

)pass

if __name__==

'__main__'

: main(

)

python楊輝三角 楊輝三角I II

給定乙個非負整數 numrows,生成楊輝三角的前 numrows 行。在楊輝三角中,每個數是它左上方和右上方的數的和。示例 輸入 5 輸出 1 1,1 1,2,1 1,3,3,1 1,4,6,4,1 可以一行一行錯位加,當然這裡提供更簡便的方法。任取一行描述 1,2,1 如何得到 1,3,3,1 ...

Java 楊輝三角

public class yanghui 生成指定行數的楊輝三角形 param lines 楊輝三角形的行數 public void printyanghui int lines if lines 30 int line new int lines int maxlen getmaxlen line...

輸出楊輝三角

程式的版權和版本宣告部分 檔名稱 fibnacci.cpp 作 者 單虹毓 完成日期 2013 年 12 月 4 日 版本號 v1.0 輸入描述 無 問題描述 楊輝三角 程式輸出 1 第0列和對角線上的元素都為1。程式輸出 2 除第0列和對角線上的元素以外,其它元素的值均為前一行上的同列元素和前一列...