Recursos en Python

De Wiki d'en Jordi Binefa
Dreceres ràpides: navegació, cerca

Guies, llibres i pdf

Python 3 per a no programadors

Think Python. How to Think Like a Computer Scientist

Taller de Python y sus ejemplos

How To Install Python 3 and Set Up a Local Programming Environment on Debian 8

Writing extensions for Python 3 in C - Part 1

Interfacing with C

Turtle graphics

From docs.python.org

From Blocks to Code with Trinket

Qt

PyQt

Installing PyQt5

pyside2

Qt for Python/GettingStarted/X11

Portabilitat de Windows a Linux

Quan copieu un codi desenvolupat en Windows (amb shebang #!/usr/bin/env python3 ) i el porteu a GNU/Linux us pot sortir un error com aquest:

chmod +x fetAwindows.py
./fetAwindows.py
/usr/bin/env: «python3\r»: El fitxer o directori no existeix

Per a arranjar-ho podeu fer servir el paquet dos2unix:

sudo apt install dos2unix

Per a fer la conversió:

dos2unix fetAwindows.py

I ara ja ho podeu executar amb normalitat:

./fetAwindows.py