python怎麼看三角形 Python判斷三角形

2021-10-21 05:39:14 字數 663 閱讀 4447

#檔名稱:a.py

# 作 者:孔雲

#問題描述:編寫程式,從鍵盤輸入三條邊,判斷是否能夠構成乙個三角形。

#問題分析:組成三角形的條件是任意兩邊之和大於第三邊,如果條件成立,則能構成三角形。條件表示式中的多個條件必須全部成立,條件之間使用and運算子連線。程式碼如下:

side1=float(input("the first side of ********:"))

side2=float(input("the second side of ********:"))

side3=float(input("the thrid side of ********:"))

if(side1+side2>side3)and(side2+side3>side1)and(side3+side1>side2):

print (side1,side2,side3,"is sides of ********")

else:

print (side1,side2,side3,"is not sides of ********")

執行結果如下:

注:在這注意的是條件表示式中使用and運算子,而不是&!!!

python楊輝三角形

user bin python3 移植,當 移植到linux系統時,必須要寫 condig utf 8 有中文時,必須要寫,否則容易報錯 n int input n請輸入數字 n intlist 0for i in range n for j in range n 列表推導式,生成乙個n行n列的二維...

python畫三角形

使用python自帶的turtle庫 兩種方法畫出的三角形是一樣的。import turtle 引入turtle庫。turtle.penup turtle.goto 200,50 turtle.pendown 可以一起理解 讓畫筆不留痕跡的來到 200,50 的地方。turtle.penup 抬筆,...

帕斯卡三角形 python

題目出自python入門經典第六章課後題 解決思路如下 每一行開始與結尾人為插入0元素,便於計算,在最後輸出的時候不顯示就可以了 lines input input the lines while not lines.isdigit print please enter an integer lin...