Python 3 Tutorial: 6 - More Functions

preview_player
Показать описание
In this tutorial I show how to create and call functions that contain default argument values. I also explain what global and local variables are in Python.
Рекомендации по теме
Комментарии
Автор

MOAR!!!

But really. These videos are really well presented and I think you could help a lot of new programmers get their bearings with this series. Also there is a painful shortage of Python 3 tutorials.

So once again, MOAR!!!

fenixkane
Автор

thanks for making a fast paced and right to the point tutorial.

hzmi_
Автор

Very useful. Your tutorials are one of the best on the internet. Precise and to the point.

imranjitsingh
Автор

Thanks so much!!!

I've been learning python 3 from a book and I still didn't understand functions after hours of staring at the page, your video just explained the concepts perfectly in 10 mins!!

well done for understanding the need fro python THREE tutorials as well!!!

DoctorJ
Автор

I couldnt even understand how to do Hello World! using the Python official book, now you are teaching me functions in minutes! Thanks so much!

Mmorphius
Автор

Thanks so much for these. You're a great teacher.

lightbluedev
Автор

Man keep it up I'm learning a lot with your tutorials!

Quakeinc
Автор

this along with a few of the guides linked on python.org are serving as my introduction. thnx for the vids! warm greetings from Puerto Rico!

satamusic
Автор

Good job body! Python.org couldn't help me that fast. Kudos!!!! God bless you richly

samminoblow
Автор

awesome videos. thank you for them. They helped me learn the basics of python! you rock :)

spacekillers
Автор

Hey MonkeyLords, Great tutorials, I don't think that I can code and speak at the same time so good job. I hope you do more tutorials have a great day.

paulsicurello
Автор

I am a newbie, this tutorial is nice for learning global variable :)

xenialaw
Автор

@fenixkane Trust me, I'm trying as hard as I can to make and upload these vids. However, life seems determined to stop me. It's nearing the end of my school year, and I literally have no time. However, soon enough I will be able to make videos to my heart's content!

TheMonkeyLords
Автор

Hey, I want help using split
I want to input var in format as
1 2
3 4
4 5

rpwarp
Автор

wanna help me out with a stylometrics assignment im working on in class rn?

dustinwilson
Автор

what about call by reference and call by value ?

rajakishan
Автор

@satamusic Puerto Rico? My freind jut moved there last year. :(

Bricklink
Автор

You throw it on the GROUNNNDDDD :P

"When you notice it..."

alegaultcesta
Автор

guys you should try putting func() inside func(), very funny: like this:

def func():
global x
x = 30
print (x)
func()

thedagr