Advertisement
here2share

Python -- Basic Structure

Dec 11th, 2022
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.53 KB | None | 0 0
  1.  
  2.  
  3. import module
  4. from module import function
  5. class classname(parentclass):
  6.   def functionname(arg):
  7.     return expr
  8.  
  9. if expr:
  10.   elif expr:
  11.     else:
  12.       ...
  13. for var in iterable:
  14.   while expr:
  15.     try:
  16.       except Exception as var:
  17.         with expr as var:
  18.           raise Exception
  19.           break
  20.           continue
  21.           pass
  22.           del var
  23.           assert expr
  24.           yield expr
  25.           lambda arguments: expr
  26.           global var
  27.           nonlocal var
  28.           async
  29.           def functionname(arg):
  30.             await expr
  31.             range(start, stop, step)
  32.             in
  33.             not in
  34.             and
  35.             or
  36.             not
  37.             len(obj)
  38.             type(obj)
  39.             str(obj)
  40.             repr(obj)
  41.             int(x, base)
  42.             float(x)
  43.             complex(real, imag)
  44.             divmod(x, y)
  45.             pow(x, y, z)
  46.             round(number, ndigits)
  47.             max(iterable, *args, key)
  48.             min(iterable, *args, key)
  49.             sum(iterable, start)
  50.             any(iterable)
  51.             all(iterable)
  52.             sorted(iterable, key, reverse)
  53.             reversed(sequence)
  54.             enumerate(iterable, start)
  55.             zip(*iterables)
  56.             map(function, iterable, *iterables)
  57.             filter(function, iterable)
  58.             abs(x)
  59.             chr(i)
  60.             ord(c)
  61.             bin(x)
  62.             oct(x)
  63.             hex(x)
  64.             bool(x)
  65.             bytearray(source, encoding, errors)
  66.             bytes(source, encoding, errors)
  67.             complex(real, imag)
  68.             dict(mapping, **kwargs)
  69.             dir(obj)
  70.             frozenset(iterable)
  71.             list(iterable)
  72.             set(iterable)
  73.             tuple(iterable)
  74.             type(obj, base_type, dict)
  75.             vars(obj)
  76.             repr(obj)
  77.             format(value, format_spec)
  78.             hash(obj)
  79.             memoryview(obj)
  80.             property(fget=None, fset=None, fdel=None, doc=None)
  81.             staticmethod(function)
  82.             classmethod(function)
  83.             isinstance(obj, classinfo)
  84.             compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
  85.             exec(source, globals=None, locals=None)
  86.             eval(expr, globals=None, locals=None)
  87.             globals()
  88.             locals()
  89.             vars()
  90.             dir()
  91.             help(obj)
  92.             ascii(obj)
  93.             repr(obj)
  94.             input(prompt)
  95.             print(*objs, sep=' ', end='\n', file=sys.stdout, flush=False)
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement