Link Search Menu Expand Document

Nützliche Hinweise zum Schluss

Hier ein paar Code-Schnipsel, die vielleicht hilfreich sein werden.

Python Code auslagern

Funktionen und auch Klassen lassen sich in gesonderten .py Dateien speichen und über import laden. Die oben stehende Klassendeklaration habe ist in der Datei pet.py gespeichert und kann wie folgt verwendet werden:

import pet as p
katze = p.Cat()
katze.play()

Write to file

Häufig möchte man Ergebnisse einer Berechnung in einer Datei speichern. Das kann man z.B. mit .write machen:

filename = 'programming.txt'

with open(filename, 'w') as file_object:
    file_object.write("I love programming.\n")
    file_object.write("Another line.")

Exceptions

Wenn ein Code einen Fehler ausgibt, bricht es ab. Da es aber vorhersehbare Fehler gibt, kann man solche Error-Messages mit tryexcept abfangen.

try:
    print(5/0)
except ZeroDivisionError:
    print("You can't divide by zero!")
filename = 'test.txt'
try:
    with open(filename, encoding='utf-8') as f:
        contents = f.read()
except FileNotFoundError:
    print(f"Sorry, the file {filename} does not exist.")

Python Objekte speichern und Abrufen: Pickle

import pickle

favorite_color = { "lion": "yellow", "kitty": "red" }
pickle.dump( favorite_color, open( "save.p", "wb" ) )
favorite_color = pickle.load( open( "save.p", "rb" ) )
print(favorite_color)

Daten / Tabellen: Pandas

import pandas as pd

dataframe = pd.read_csv("algebuei.csv", delimiter = ";")
print(dataframe)

Andere nützliche Module

Referenz auf python.org: https://wiki.python.org/moin/UsefulModules

Scientific Computing

Image Processing

Audio Processing

WWW / Webscraping

Spiele / Visualisierung

  • Pygame
  • VisPy

Machine Learning

  • Keras
  • Pytorch
  • Tensorflow

… und viele mehr!

Zum Schluss: Guter Stil

Programme sollen nicht nur funktionieren, sondern lesbar sein. Dafür gibt es mit PEP8 eine Guidline für alle Python-Programmier*innen!

import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!