Einführung in Python für die Softwareentwicklung
Jasmin Ludolf
Senior Data Science Content Developer
$$
$$
$$
$$

print("Hello!")

Python-Skript: Datei mit dem auszuführenden Python-Code
Vorgehensweise beim Entwickeln:

Du bist vertraut mit:

$$
print()
$$
print("Hello, world!")
Hello, world!
print('Hello, world!')
Hello, world!
Kommentare erklären den Code
Symbol # leitet Kommentare ein
Kommentarzeilen haben andere Farbe
Kommentare beeinflussen nicht den Code
# This is a code comment
# The below is a print function
print("Hello, world!")
Einführung in Python für die Softwareentwicklung