20 Beginner Python Projects

preview_player
Показать описание
Improve your Python skills by learning how to code 20 beginner Python projects.

⭐️ Course Contents ⭐️
(0:00:00) Introduction
(0:00:41) Email Sender
(0:12:15) Word Replacement Program
(0:14:35) Basic Calculator
(0:28:21) Email Slicer
(0:35:20) Binary Search Algorithm
(0:53:48) Quiz Program
(1:07:04) QR Code Generator
(1:13:58) Interest Payment Calculator
(1:21:51) Random Password Generator
(1:31:41) Dice Rolling Simulator
(1:38:47) Site Connectivity Checker
(1:47:29) Currency Converter
(1:51:53) Leap Year Checker
(1:55:53) Word Dictionary
(2:07:41) Rock, Paper, Scissors
(2:19:39) Python Face Detection
(2:27:14) Python Automation
(2:39:02) Web Scraper
(2:47:28) Image Resizer
(2:57:34) Graph Plotter

🎉 Thanks to our Champion and Sponsor supporters:
👾 Raymond Odero
👾 Agustín Kussrow
👾 aldo ferretti
👾 Otis Morgan
👾 DeezMaster

--

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

Big Up to FCC for publishing this, i hope it helps.

CodeWithTomi
Автор

Tomi is 17 and made it to FCC, congratulations to you, really inspiring

helloworld-vqgq
Автор

The email sender was exactly what I was looking for.
clear, beginner friendly and awesome tutorial!

purewaves
Автор

I will never be able to thank you enough... Keep working on these videos, they're incredibly useful!!!

gottfriedwilhelmvonleibniz
Автор

We really have to appreciate the time they invest to bring these beginner friendly projects!

Ruj-eoqe
Автор

⭐ Course Contents ⭐
(0:00:00) Introduction
(0:00:41) Email Sender
(0:12:15) Word Replacement Program
(0:14:35) Basic Calculator
(0:28:21) Email Slicer
(0:35:20) Binary Search Algorithm
(0:53:48) Quiz Program
(1:07:04) QR Code Generator
(1:13:58) Interest Payment Calculator
(1:21:51) Random Password Generator
(1:31:41) Dice Rolling Simulator
(1:38:47) Site Connectivity Checker
(1:47:29) Currency Converter
(1:51:53) Leap Year Checker
(1:55:53) Word Dictionary
(2:07:41) Rock, Paper, Scissors
(2:19:39) Python Face Detection
(2:27:14) Python Automation
(2:39:02) Web Scraper
(2:47:28) Image Resizer
(2:57:34) Graph Plotter

LezaWorldWide
Автор

I've been away from my Python studies for some months. This tutorial is of great help for me to remember some concepts. Thanks FCC and Tomi!

alhensouher
Автор

It's so fun when you start to get a grasp of things in Python.
Been playing around with PySimpleGui for about a week. So after i saw the "Password generator" part and understood the method i went on to try to make a interactive version in PySimpleGui. After about an hour of troubleshooting i finally made it!

Daffmelsa
Автор

Hi Tomi, great job. Keep doing it. :)
I have a remark regarding your tutorial of binary search. The -1 and +1 at the comparison to the middle value is not because python uses zero based arrays.

if(element== list[middle]): return middle
elif(element< list[middle]): end = middle -1
# -1 skips an extra step, because we already compared "middle" in the statement above, so we can definitelly throw it away,
# we don't have to take it into our new sublist, we can choose the "end" variable smaller
else: start = middle + 1
# same here, "middle" is already compared and is not matched, it is not going to be needed in our next sublist,
# we can skip it choosing the "start" variable bigger

lelemenyesnandusszeusz
Автор

Thank you for these great tutorials. They are so easy to follow.

theneverwas
Автор

thank you for the quiz set up. I like using the dictionary and the for loop and if statement.

royjuarez
Автор

Thank you for this! I was looking around for a min on other channels and putting a dict inside a dict seems better suited for what I need in my quiz program :) def sub to Tomi

donnie
Автор

thx a lot for the email sender! i'm in this right now!

fgovino
Автор

wow this is really beginner friendly, , thank you

maashintosh
Автор

Your videos are actually helping me learn to code

Bonah_uncover
Автор

Thank you so much Tomi sir for bringing to us such a fantastic tutorial...
cheers
😊😊😊

abhinavvarshney
Автор

I just started learn python.. So this tutorial is for me. Thank you very much ❤️

thusith-tec
Автор

Where can I get xml file for Face detection project????

BeMyArt
Автор

I think this binary search algorithm will only perform well on an ascending sorted array. So, we have to write the conditions based on what kind of array we are searching on. I recently modified my binary search algorithm for an unsorted array.

shadowwalker
Автор

Infact, Everytime I watch video on fcc and it is tomi and many other too teaching, I do have joy in me, because they do explain in details.thanks fcc and tomi and others too, hope to join you guys soon aswell😄.

daretimileyin