"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.


In [1]:
print('Hello Python world!')


Hello Python world!

Note: Wenn wir Python 2.7 benützen würden:


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


Hello Python world!

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


Home |