2023年1月28日星期二
例項1 溫度轉化
**:
#tempconvert.py
tempstr=
input
("請輸入帶有符號的溫度值:"
)if tempstr[-1
] in [
'f',
'f']
: c=
(eval
(tempstr[0:
-1])
-32)/
1.8print
("轉換後的溫度值為c"
.format
(c))
elif tempstr[-1
] in [
'c',
'c']
: f=
eval
(tempstr[0:
-1])
*1.8+32
print
("轉換後的溫度值為f"
.format
(f))
else
:print
("輸入格式錯誤"
)
結果:
eval()函式的作用是將輸入的字串的外面去掉取字串裡面的內容
HTML5入門 表單驗證及例項
表單驗證 屬性 validity 獲得驗證物件,管理表單的驗證狀態 valid 表示驗證是否通過,屬性值為真,則通過 為假,沒通過 約束條件 用來實現表單驗證 valuemissing 值為空,即必填字段,如果未填,值為false 如果填寫,值為空 typemismatch 型別不一致,如,當限定文...
Python入門 迴圈例項操作及跳出迴圈
一 計算階乘 1 2 3 4 n for迴圈計算階乘的方式 fo ct.py n int input enter an integer 0 fact 1 for i in range 2,n 1 fact fact i print str n factorial is str fact 結果是 en...
驗證碼登入及例項
圖形驗證碼 極驗驗證碼 1 手動輸入 2 光學識別 ocr 畢竟是機器,一般識別率 80 僅限於簡單的圖形驗證碼 指令識別,tesseract 名字 lala 0 識別,60 pip install pytesseract pip install pillow 3 打碼平台 雲打碼import re...