Python錯題本(1)range()
>>> def mFun(*param, base=3):
result = 0
if param[-1]!=5:
for each in param:
result+=each
result *= base
else:
for each in range(len(param)-1):
result += each
result *=5
print('結果是:', result)
>>> mFun(7,4,9,2,base=3)
結果是: 66
>>> mFun(7,4,9,2,5,base=3)
結果是: 30
>>> mFun(7,4,9,1,5,base=3)
結果是: 30
相關文章
- 錯題本
- Python range()Python
- python爬蟲 -IndexError: list index out of range報錯Python爬蟲IndexError
- python-rangePython
- Python錯誤集錦:for x in range(5) ^ SyntaxError: invalid syntaxPythonError
- MySQL range問題MySql
- Python range() 函式用法Python函式
- python入門:range函式Python函式
- 計算機組成原理-錯題本計算機
- 不可錯過的十本Python好書Python
- Python 編碼錯誤的本質原因Python
- python range()函式指定數值Python函式
- Python3 range() 函式用法Python函式
- python開發的range()函式Python函式
- html/template 模板range輸出問題HTML
- Python指令碼典型報錯(1)Python指令碼
- golang for range 遍歷 對比 PHP、pythonGolangPHPPython
- PyThon range()函式中for迴圈用法Python函式
- Python中range和xrange的區別Python
- Caused by: java.lang.IllegalArgumentException: port out of range:-1JavaException
- mybatis Parameter index out of range (1 > number of parameters, which is 0)MyBatisIndex
- 錯題知識點回顧1
- TCP/UDP的埠Dynamic Port Range問題TCPUDP
- Python range與enumerate函式區別解析Python函式
- Python range()函式有什麼作用?如何使用?Python函式
- 技術原理:Python中range和xrange對比Python
- 1.python報錯:TypeError: 'int' object is not subscriptablePythonErrorObject
- 用Python解答ProjectEuler問題(1)PythonProject
- range方法在Python2和Python3中的不同Python
- Python面試題分享,不要錯過喲!Python面試題
- 素養賽Python複賽題——錯排問題Python
- Python學習系列之 xrange和range的區別!Python
- Python:range、np.arange和np.linspacePython
- 嚴選 | Elasticsearch中文社群201901錯題本Elasticsearch
- INDEX RANGE SCAN DESCENDING的邏輯讀問題Index
- 【python】解決sys:1: DeprecationWarning:錯誤提示Python
- 交流(1)-- 執行計劃錯誤問題
- AI筆試面試題庫-Python題目解析1AI筆試面試題Python