pythonreserved函数
时间: 2024-06-06 10:08:04 浏览: 36
Python函数
Python中的保留函数是指Python语言中已经被定义并且有特定用途的函数,这些函数在Python中具有特殊的含义和用途,不能被重新定义或使用。以下是Python中的保留函数列表:
- False
- None
- True
- and
- as
- assert
- async
- await
- break
- class
- continue
- def
- del
- elif
- else
- except
- finally
- for
- from
- global
- if
- import
- in
- is
- lambda
- nonlocal
- not
- or
- pass
- raise
- return
- try
- while
- with
- yield
阅读全文