1. 程式人生 > >Python3.7 內建函式

Python3.7 內建函式

  • print() input()
  • quit() exit() # 互動模式 ctrl+D
  • help() >>> help('__main__')
  • dir()
  • len() max() min()
  • any() all() cmp()
  • str() bool() int() float() complex()
  • ord() chr()
  • hex() oct() bin()
  • sum() abs() round() pow()
  • range()
  • list() tuple() set() dict()
  • bytes() bytearray()
  • map() filter() sorted()
  • reversed()
  • copy() # 淺拷貝
  • # 深拷貝 import copy copy.deepcopy()
  • globals() locals()
  • eval() exec()
  • iter() next()
  • zip() enumerate()
  • open(file,mode='rt')
  • 自定義類名() 構建函式
  • isinstance(obj,class_or_tuple)
  • issubclass(class, classinfo)
  • id() type() repr()
  • super()
  • property(fget, fset, fdel, doc)