Automate the boring stuff with Python - Part 3: Flow Control

preview_player
Показать описание
We learn about Python basics which we need to automate e.g. web scraping, working with Excel documents and Google Drive.
We cover chapter 2 of the book Automate the boring stuff with Python by Al Sweigart - covering flow control in Python.
Follow along to learn Python programming and make your life easier with automation.

Song: The Uneven Path - Trevor Kowalski

Timestamps:
0:00 - Introduction
2:12 - Boolean values
4:00 - Comparison operators
10:59 - Boolean operators
18:41 - Elements of flow control
20:57 - if, elif and else statements
24:12 - while loops
32:35 - for loops
38:51 - Importing modules
43:00 - Example program: Guess the number
46:35 - Example program: Rock, paper, scissors
52:17 - Practice questions
Рекомендации по теме
Комментарии
Автор

Hi, I'm getting a deep and solid knowledge here. currently, I bought the "crash course with Python" and following you. thank you.

EriCodepurpose
Автор

Thank you, Robin. A productive night thanks to you! Let's see if I can take another class before I go to sleep! :) Thank you, again!

taulguedi
Автор

This is a pretty great video, I will be watching all of them. Thank you and I hope you will be reviewing the whole book.

Kicsa
Автор

Thank you so much 😊I hope that you keep sending that kinds of instructive videos

okyanusaydogan
Автор

"Guess a number between 1 and 20."
"10!"
"Yes, the number is 10!" 😄

Thanks for such video and explaining everything in detail, especially regarding import.

kainuu
Автор

How would you write the code to showcase figure 2-1?

CrimsonSimmer
Автор

the videos are great but the creator does not type the code. The code just appears so it is a bit tough to type code for beginners

zubair
Автор

name = 'Mary'
password = 'swordfish'
if name == 'Mary':
print('Hello, Mary')
if password == 'swordfish':
print('Access granted.')
else:
print('Wrong password.') actually this code is wrong written in automatting the boring stuff sir could you plz fix this error

_Thomas_Shelby_