• Home
  • Raw
  • Download

Lines Matching full:single

10 Simple statements are comprised within a single logical line. Several simple
11 statements may occur on a single line separated by semicolons. The syntax for
50 An expression statement evaluates the expression list (which may be a single
57 single: output
75 single: =; assignment statement
101 a single expression or a comma-separated list, the latter yielding a tuple) and
102 assigns the single resulting object to each of the target lists, from left to
106 single: target
120 * If the target list is a single target: The object is assigned to that target.
126 Assignment of an object to a single target is recursively defined as follows.
137 .. index:: single: destructor
244 single: statement; assignment, augmented
245 single: +=; augmented assignment
246 single: -=; augmented assignment
247 single: *=; augmented assignment
248 single: /=; augmented assignment
249 single: %=; augmented assignment
250 single: &=; augmented assignment
251 single: ^=; augmented assignment
252 single: |=; augmented assignment
253 single: **=; augmented assignment
254 single: //=; augmented assignment
255 single: >>=; augmented assignment
256 single: <<=; augmented assignment
258 Augmented assignment is the combination, in a single statement, of a binary
281 With the exception of assigning to tuples and multiple targets in a single
317 single: __debug__
424 single: output
436 single: stdout (in module sys)
443 .. index:: single: extended print statement
494 single: generator; function
495 single: generator; iterator
496 single: function; generator
556 single: exception
580 single argument to the constructor. The instance so created by calling the
666 single: module; importing
669 single: as; import statement
691 single: package
701 single: sys.modules
710 single: sys.meta_path
711 single: finder
713 single: __path__
727 single: sys.path_hooks
728 single: sys.path_importer_cache
729 single: sys.path
748 the list with a single argument of the path, returning a finder or raises
758 single: loader
776 single: __name__
777 single: __file__
778 single: __path__
779 single: __package__
780 single: __loader__
821 .. index:: single: __all__ (optional module attribute)
839 single: relative; import
1027 single: __builtins__