1、非空即真
s=""
d=l={}
none
以上這4中都是空,在寫判斷是可以縮寫
例子:#非空即真
str1=''
ifstr1:
print("
字串不為空")
else
:
print("
字串為空")
d:\study\python\test\venv\scripts\python.exe d:/study/python/test/dd.py
字串為空
#非空即真
str1='小小'
ifstr1:
print("
字串不為空")
else
:
print("
字串為空")
d:\study\python\test\venv\scripts\python.exe d:/study/python/test/dd.py
字串不為空
2、非0即真
根據非0即真,可對判斷式進行縮寫
例子:#非0即真
str1=0
ifstr1:
print("
str1不為0")
else
:
print("
str1為0")
d:\study\python\test\venv\scripts\python.exe d:/study/python/test/dd.py
str1為0
#非0即真
str1=3
ifstr1:
print("
str1不為0")
else
:
print("
str1為0")
d:\study\python\test\venv\scripts\python.exe d:/study/python/test/dd.py
str1不為0
Python天天美味 12 條件判斷的縮寫
開始以為python中沒有像其他語言一樣的條件判斷的縮寫形式 1 is easy my god c 中的用法 其實,在python中,是這樣寫的 2 and fool or not bad 輸出結果 not bad python 天天美味系列 總 python 天天美味 10 除法小技巧 pytho...
Python天天美味 12 條件判斷的縮寫
開始以為python中沒有像其他語言一樣的條件判斷的縮寫形式 return 1 1 is easy my god c 中的用法 其實,在python中,是這樣寫的 print 1 2 and fool or not bad 輸出結果 not bad python 天天美味系列 總 python 天天...
python縮寫詞函式 第6章函式 6 縮寫詞
縮寫詞是由乙個短語中每個單詞的第乙個字母組成,均為大寫。例如,cpu是短語 central processing unit 的縮寫。函式介面定義 acronym phrase phrase是短語引數,返回短語的縮寫詞 裁判測試程式樣例 請在這裡填寫答案 phrase input print acro...