python學習筆記

2022-06-15 20:00:18 字數 1328 閱讀 1706

小tip:迴圈中盡量不要使用多的break和continue,會使分支變多,程式變得複雜,更容易出錯

疑問1.**中傳入錯誤的引數,和python直譯器中傳入錯誤的引數,提示語不一致

def my_abs(x):

if not isinstance(x, (int, float)):

raise typeerror('bad operand type')

if x >= 0:

return x

else:

return -x

my_abs('a')

執行結果是;

c:\users\user\desktop>python c:\users\user\desktop\hello.py

traceback (most recent call last):

file "c:\users\user\desktop\hello.py", line 10, in my_abs('a')

file "c:\users\user\desktop\hello.py", line 5, in my_abs

raise typeerror('bad operand type')

typeerror: bad operand type

**是

def my_abs(x):

if not isinstance(x, (int, float)):

raise typeerror('bad operand type')

if x >= 0:

return x

else:

return -x

直譯器中執行,提示語不同

>>> from hello import my_abs

>>> my_abs('a')

traceback (most recent call last):

file "", line 1, in file "c:\users\user\desktop\hello.py", line 4, in my_abs

if not isinstance(x,(int,float)):

typeerror: '>' not supported between instances of 'str' and 'int'

引數筆記

引數定義的順序必須是:必選引數、預設引數、可變引數、命名關鍵字引數和關鍵字引數。

mapreduce**

python教學筆記 python學習筆記(一)

1.eval 函式 eval是單詞evaluate的縮寫,就是 求.的值的意思。eval 函式的作用是把str轉換成list,dict,tuple.li 1 1,2,3 print eval li 1 di 1 print eval di 1 tu 1 2,4,6 print eval tu 1 執...

python學習筆記

coding utf 8 coding utf 8 應該像八股文一樣在每個指令碼的頭部宣告,這是個忠告 為了解決中文相容問題,同時你應該選擇支援 unicode 編碼的編輯器環境,保證在執行指令碼中的每個漢字都是使用 utf 8 編碼過的。cdays 5 exercise 3.py 求0 100之間...

Python 學習筆記

python 學習筆記 def run print running.def execute method method execute run result running.condition false test yes,is true if condition else no,is false ...