Python
Z Varhoo
(Rozdíly mezi verzemi)
Řádka 6: | Řádka 6: | ||
* [[python - zajímavé projekty]] |
* [[python - zajímavé projekty]] |
||
* [[uwsgi ]] |
* [[uwsgi ]] |
||
+ | |||
+ | |||
+ | Vychytávky - Interesting construction -> run this script with python 2.6 and look at result |
||
+ | |||
+ | #!/bin/bash |
||
+ | """:" |
||
+ | exec python2.7 "$0" "$@" |
||
+ | """ |
||
+ | |||
+ | import sys |
||
+ | print sys.version |
Verze z 2. 9. 2014, 18:18
Návody
- python - lineární filter
- python - half float 16bit
- python - sbírka hezkých konstrukcí
- python - zajímavé projekty
- uwsgi
Vychytávky - Interesting construction -> run this script with python 2.6 and look at result
#!/bin/bash """:" exec python2.7 "$0" "$@" """ import sys print sys.version