help("keywords") #查看Python系统关键字有哪些
    False               def                 if                  raise
    None                del                 import              return
    True                elif                in                  try
    and                 else                is                  while
    as                  except              lambda              with
    assert              finally             nonlocal            yield
    break               for                 not                 
    class               from                or                  
    continue            global              pass   
Python中内置函数         
    abs()             divmod()        input()           open()         staticmethod()
    all()             enumerate()     int()             ord()          str()
    any()             eval()          isinstance()      pow()          sum()
    basestring()      execfile()      issubclass()      print()        super()
    bin()             file()          iter()            property()     tuple()
    bool()            filter()        len()             range()        type()
    bytearray()       float()         list()            raw_input()    unichr()
    callable()        format()        locals()          reduce()       unicode()
    chr()             frozenset()     long()            reload()       vars()
    classmethod()     getattr()       map()             repr()         xrange()
    cmp()             globals()       max()             reverse()      zip()
    compile()         hasattr()       memoryview()      round()        __import__()
    complex()         hash()          min()             set()     
    delattr()         help()          next()            setattr()     
    dict()            hex()           object()          slice()     
    dir()             id()            oct()             sorted()       exec 内置表达式

 

相关文章:

  • 2021-12-29
  • 2018-09-27
  • 2019-06-24
  • 2019-11-15
  • 2021-08-21
  • 2021-09-27
  • 2021-07-19
  • 2021-10-19
猜你喜欢
  • 2021-12-15
  • 2020-05-13
  • 2019-03-14
  • 2019-09-19
  • 2020-05-21
  • 2021-11-21
  • 2019-11-17
  • 2021-10-14
相关资源
相似解决方案