"Hello world" in Python

Als Einstieg in eine neue Programmiersprache wird oft "Hello World" als Nachricht ausgegeben. Dies dient auch als Test ob Python richtig konfiguriert wurde.

print('Hello Python world!')


In [ ]:
Note: If you are using Python 2.7, this would be:

In [2]:
print "Hello Python world!"


Hello Python world!

Wenn es funktioniert, hast du alles richtig gemacht und Python funktioniert auf deinem Rechner.