About this video
Hinweis: Eine Funktionsdefinition muss vor deren Ausführung erfolgt sein, sonst wirft Python einen NameError:
def hi():
print("Hi")
hi()
hi()
Hi
Hi
Self-paced course
This video belongs to the openHPI course Programmieren lernen mit Python. Do you want to see more?
Woche 3
An error occurred while loading the video player, or it takes a long time to initialize. You can try clearing your browser cache. Please try again later and contact the helpdesk if the problem persists.
To enable the transcript, please select a language in the video player settings menu.
Hinweis: Eine Funktionsdefinition muss vor deren Ausführung erfolgt sein, sonst wirft Python einen NameError:
def hi():
print("Hi")
hi()
hi()
Hi
Hi