Lesson 9 - Python Programming (Automate the Boring Stuff with Python)

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


Рекомендации по теме
Комментарии
Автор

I`m 85 and still learning to program Python... Thank for help with Python Programming (Automate the Boring Stuff with Python)

donaldpowers
Автор

I'm 900 and have finally decided to learn Python. Never too old to start!

whakydude
Автор

duuude
one word
thanx
your tutorials are awesome
when you start learning a new language the hardest part is finding a good info source
i ve comen across many tutorials but it s awesome how perfectly you explain things
you just give us the point of view we sould have
not overloaded nor nothing at all
if you see what i mean... congrats
thanx again
keep up

georgevasiliadis
Автор

i just wanna say

print('thank you from the bottom of my heart. :-)')

thalibyusuf
Автор

the point of returning none is because when u call print("hello") you dont want to return " print("hello") ", you want to return hello. so the none data type subtracts the part its attached to as in return ---> hello MINUS print(" "). so print(" ") returns NONE of itself

jakeambrose
Автор

"function calls can be part of expressions because they evaluate to a value returned by the function call" - really struggling to follow this. could someone please explain ?

moket
Автор

I didn't quite get why you used the return function

darshkale
Автор

hi al swigart i have been watching your vids on scratch and keep making python vids

bipitybop_
Автор

I'm going to take a Health Informatics soon. Got your books thru my husband past time :)

kristinem.p.
Автор

Nice video! I bought your courses yesterday ! thanks !

suppermanzzzz
Автор

Which is IDE should i use to learn python on beginner level. ?
and Which one is widely used by pro developers/?

dataaholic
Автор

why would you want to write a function that returns a None value?

BeYakko
Автор

Hello thanks for the great tutorials
I have a question before i continue
Since this is 5years old
Is it still the same? or do i need to look for more recent python tutorials?

jiahoaf
Автор

Anyone know why 'pip3 install pyzmail' gives an error message when installing on Mac?

muhammadaltalib
Автор

pyperclip not available fir Android!😭😭😭

chigoziechinasi
Автор

i follow your videos. the your explanations are so brief. you formate the consepts in programing very briefly. i ve a problem i couldnot open pip command prompt is because of wrong path?

ernestoevkur
Автор

Hi mr.Sweigart i'll buy your's book, and that good book, in section exercise for Function you add collatz() and i not understand all, mb u see my code(horroble) and help me with code please?

def collatz(number):
if number % 2 == 0:
return number //2
if number % 2 == 1:
return 3 * number + 1

while True:
a = int(input('number: '))
print(collatz(a))
if collatz(a) != 1:
continue
elif collatz(a) == 1:
break
print('number is equal 1')

garrygoodrege
Автор

Is this tut considered as an OOP tutorial?

sedricnicoleurbano
Автор

Wait, wait, wait, wait, wait. Hold up.
5:52
I had no idea Chrome has an expression demo tool built in. HOW did you get it to do that?

TheWiseDrunkard
Автор

Ok, everything up until this was review for me...time to take the speed down from 2x to 1.25x, ;)

kidacrimson