Python for Beginners - Learn Python in 1 Hour

preview_player
Показать описание
Learn Python basics in 1 hour! ⚡ This beginner-friendly tutorial will get you coding fast.

🚀 Want to dive deeper?

✋ Stay connected:

⭐ My favorite Python books

📖 TABLE OF CONTENT
0:00:00 Introduction
0:00:30 What You Can Do With Python
0:01:15 Your First Python Program
0:05:30 Variables
0:09:08 Receiving Input
0:10:48 Type Conversion
0:18:49 Strings
0:23:41 Arithmetic Operators
0:25:59 Operator Precedence
0:27:11 Comparison Operators
0:28:52 Logical Operators
0:31:06 If Statements
0:36:16 Exercise
0:41:42 While Loops
0:45:11 Lists
0:48:47 List Methods
0:52:16 For Loops
0:54:54 The range() Function
0:57:43 Tuples

#Python #AI #MachineLearning #WebDevelopment
Рекомендации по теме
Комментарии
Автор

I'm learning because i want a better job than driving a school bus.

For many who keep asking, I did infact become a computer programmer. I started here learning Python. Then I moved to others like Java and c sharp and plus plus to name a few. I even learned Fortran because of a job needed it(very useful but not at the same time, lol). I've turned a page from working with a company and decided to design games a long time dream of mine. I hope wholeheartedly that this video helps all of you the same way it did for me. Thank you all for the best wishes. They've helped me push along even when I felt I couldn't go any further. You all are the best!

Seraphvonteschen
Автор

This guy, sat for 1 hour and talked about python, and then released it for free. legend

codingmadeclear
Автор

I've taken a C++ in college years ago with a bad instructor that made me hate coding. Coming back with your simple and clear explanation to this nice language made me wanna learn more.
Thanks a lot, Mosh.

BnDo
Автор

I've been a cook for 18 years and I'm ready for something new and better. Can't wait to fully learn this!

johnm.
Автор

Three years ago, I viewed this video, and now, I hold the position of Sr.Python developer. Gratitude to Mosh for the guidance.

tharmaraj
Автор

For those who are struggling to learn Python, like I did, here is a game changing tip:
avoid long complicated tutorials you see online. You need to walk before you can run.
Start with very basic Books. Once you get them right, learning everything else becomes much easier.
Edit: For those asking about the books, the best basic one is Javascript In Less than 50 Pages.
It`s about Javascript but it is the fastest to learn the conceps that will be useful in any programming language.
Second I would recommend A Smarter Way to Learn Python. Your knowledge will transform.

jonathanh
Автор

I really loved how he even demonstrated the possible mistakes we could make and even corrected them. For an absolute beginner, this is a perfect intro to Python. Great tutorial! Would highly recommend to anyone learning Python. Thanks Mosh! 😊

SwaraNaik-jovd
Автор

I’ve been doing python classes for 4 weeks now and your 1 hour has taught me more than going to class for 4 hours

matthewrennie
Автор

Thanks Mosh! ❤ After struggling for 1 year with complicated tutorials, I finally learned Javascript and Python! I did with the help of your videos and a few good books. I got hired this week and I'm here to say thank you!
Edit: For those asking, I learned with the books 'Javascript In Less than 50 pages' for the basics of programming and 'Smarter Way to Learn Python" to develop my knowledge on Python.
Learning anything else becomes much easier after that.

meilinfjellstad
Автор

my first python class.i m still learning from u . thank u . u r the best

mayeshafahmida
Автор

I'm watching this on school for my math class as my independent learning program and it has clearer and easier to understand than all the other coding courses i've tried

TBT_
Автор

I'm literally only like 5 minutes in and this is making more sense then my weeks of classes. Sir you are amazing. You need to win some sort of award for the service you are doing for the millions of people watching. You are opening doors and potential futures for people. This could be life changing. You gained a subscriber.

everestdennis
Автор

Hey, thank you for taking the time to make this vid! I just wrapped up watching it with my pythonista app open at the side completing all the exercises and generally having a blast. It feels great to get back into coding with free resources like this.

shafiurrahaman
Автор

36:57 my code is the one below, seems fine, works correctly

weight = int(input("Whats Your Weight? : "))
type = input("(K)gs Or (L)bs? : ")
if type == "K" or type == "k":
a1 = weight * 2.20462
print("You are " + str(a1) + " lbs")

elif type == "L" or type == "l":
a2 = weight * 0.453592
print("You are" + str(a2) + " kgs")

gameverse-alchemy
Автор

Ik he won’t see this, but this was such a clear display of how to understand the language at a base. Felt like my class expected us to juggle so much info at once without going over the basic lessons again. This is exactly what I needed as a refresher so thanks

Proche
Автор

your english is really easy to understand for someone who is not a native speaker, thanks!!

Marcos-nlel
Автор

answer for second exercise :
first = input('first ')
second = input('second ')
result = int(first) + int(second)
print(result)

great video

vasuarora
Автор

This is the most simplified course I have ever come across. Thank you Mosh

codewithpraisejames
Автор

10 minutes in and i already learned more than i did from my high school teacher

bigsteppa
Автор

As a programming newbie, I can say that this has simplified Python to a point that I am wholly interested. Awesome job, Mosh!!

UBNG