Are there any other uses for Python's "from" keyword aside from import statements?
| ||||
|
feedback
|
|
No and yes. According to the official Python 2.7.2 grammar, the only occurrence of the word In the Python 3.1.3 grammar a new clause
appears, so yes. | ||||
|
feedback
|
|
In Python 2.x, the only use of
| |||||
feedback
|
|
There is a new syntax for delegating to a subgenerator in Python 3.3 which uses the | |||
|
feedback
|
|
The following use
is syntactically identical to an import statement but instead of importing a module, it changes the behavior of the interpreter in some fashion, depending on the value of For example, See the See the | |||||||||||||||
feedback
|