Functions | Python | Tutorial 14

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, lists, tuples, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

Hello Mike! I just wanted to convey my appreciation to you for the wonderful videos on Python by Giraffe Academy. These videos are short and crisp and wonderfully complement other learning material on the subject.

sridharsubramonyan
Автор

You are a natural teacher! Please keep on making these videos.

uvinidas
Автор

Happy to find your videos after being totally lost in lectures.
Great explanations for beginners 👍

ozwrangler.c
Автор

thank's bro, your videos are best one, how we can use switch statement in Python?
thank you for advace

otabeksaibnazarov
Автор

Thanks Mike you are making great things

aryavaraste
Автор

Are the below seen as good practice?


name = input("Enter your name: ")

def sayhi():
print("Hello " + " " + name)

sayhi()
or
def sayhi(name = input("Enter your name: ")):
print("Hello " + name)

sayhi()

TheSlytooth
Автор

def say_hi(name):
print("Hello " + name)
name = input("Enter your name: ")
say_hi(name)

joshcarroll
Автор

Thx you! Love your vids! You always clear things up for me :)

spooky_arctic
Автор

thank you man :X:XX: you are an amazing teacher, , you describe each part in the best way some one can do, really easy, and that's because you are so expert :XX: i appreciate your precious work thank you ... guys try this code 
it will read from user and then shows the massage ! so simple

hasanafshar
Автор

Teaching myself with youtube videos because my class is useless

Mashoshan
Автор

Thanks Mike, you are the fucking man!

resistencialiberal
Автор

Are we able to get input from a user within a function ?

shuttletheone
Автор

Why is there a ( : ) at the end of the parameter name ?

iifinisherii