Це відео відноситься до openHPI курсу Programmieren lernen mit Python. Бажаєте побачити більше?
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.
Прокрутити до поточної позиції
Щоб увімкнути запис, виберіть мову в меню налаштувань відео.
Про це відео
Hinweis: Eine Funktionsdefinition muss vor deren Ausführung erfolgt sein, sonst wirft Python einen NameError
:
def hi():
print("Hi")
hi()
hi()
Hi
Hi