
Home |
Registration |
Accommodation and Travel |
List of Participants |
Program |
The following is a simplified depiction of the package hierarchy.
You can pass any object to f() for which "multiply by 2" is defined.def f(x): return x * 2
>>> f(3)
6
>>> f(3.0)
6.0
>>> f("hello")
'hellohello'