High Definition Standard Definition Theater
Video id : kqtD5dpn9C8
ImmersiveAmbientModecolor: #e8c894 (color 1)
Video Format : 22 (720p) openh264 ( https://github.com/cisco/openh264) mp4a.40.2 | 44100Hz
Audio Format: Opus - Normalized audio
PokeTubeEncryptID: c71ef218f7efd96b5060f60ad01113c2f95c066c388133c412636d720120cbc279400aa2c49b26724b1b6d929a867e52
Proxy : eu-proxy.poketube.fun - refresh the page to change the proxy location
Date : 1715799806400 - unknown on Apple WebKit
Mystery text : a3F0RDVkcG45QzggaSAgbG92ICB1IGV1LXByb3h5LnBva2V0dWJlLmZ1bg==
143 : true
Python for Beginners - Learn Python in 1 Hour
Jump to Connections
16,807,527 Views โ€ข Sep 16, 2020 โ€ข Click to toggle off description
Learn Python basics in 1 hour! โšก This beginner-friendly tutorial will get you coding fast.

๐Ÿš€ Want to dive deeper?
- Check out my Python mastery course: bit.ly/35BLHHP
- Subscribe for more Python tutorials like this: goo.gl/6PYaGF

๐Ÿ“• Get the FREE goodies:
- Python cheat sheet: bit.ly/2Gp80s6
- Python exercises for beginners: goo.gl/1XnQB1

โœ‹ Stay connected:
- Twitter: twitter.com/moshhamedani
- Facebook: www.facebook.com/programmingwithmosh/
- Instagram: www.instagram.com/codewithmosh.official/
- LinkedIn: www.linkedin.com/school/codewithmosh/

โญ My favorite Python books
- Python Crash Course: amzn.to/2GqMdjG
- Automate the Boring Stuff with Python: amzn.to/2N71d6S
- A Smarter Way to Learn Python: amzn.to/2UZa6lE
- Machine Learning for Absolute Beginners: amzn.to/2Gs0koL
- Hands-on Machine Learning with scikit-learn and TensorFlow: amzn.to/2IdUuJy

๐Ÿ“– 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
Metadata And Engagement

Views : 16,807,527
Genre: Education
Date of upload: Sep 16, 2020 ^^


Rating : 4.957 (4,380/404,981 LTDR)
RYD date created : 2022-04-09T21:29:32.004597Z
See in json
Tags

YouTube Comments - 20,504 Comments

Top Comments of this video!! :3

@programmingwithmosh

2 years ago

๐Ÿ”ฅ Want to master Python? Get my complete Python course: bit.ly/35BLHHP ๐Ÿ‘ Subscribe for more Python tutorials like this: goo.gl/6PYaGF

816 |

@codingmadeclear2229

3 years ago

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

21K |

@Seraphvonteschen

3 years ago

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 could go any further. You all are the best!

23K |

@Taglioz

2 months ago

Thank you so much for the help Mosh! Excercise 1: print ("Check In") print("Data=") first_name = "John Smith" age = 20 new_patient = True print("Name:",first_name) print("Age:",age,"Years Old") print("New Patient?","Yes") Excercise 2: first = input("First: ") second = input("Second: ") sum = float(first) + float(second) strsum = str(sum) print("Sum: " + strsum) if statements: temperature = 25 if temperature > 30: print("It's a Hot Day") print("Drink plenty of water") elif temperature > 20: # (20, 30] print("It's a Nice Day") elif temperature > 10: # (10, 20] print("It's a bit cold") else: print("It's Cold") print("Done") Excercise 3: weight = input("Weight: ") unit = input ("(K)g or (L)bs: ") if unit.upper() == "L": weightk = float(weight)/2.205 print("Weight in Kg: " + str(int(weightk)) + " kg") # (lbs to kg] elif unit.upper() == "K": weightl = float(weight)*2.205 print("Weigth in Lbs: " + str(int(weightl))+ " lbs") # (kg to lbs]

175 |

@vasuarora631

1 week ago

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

6 |

@tharmaraj86

5 months ago

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

1K |

@jonathanh8298

1 year ago

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.

5.2K |

@shahabuddin126

2 months ago

I have been trying to learn. But the way he has explained so far is super easy and understandable. I wish I could come to this channel earlier.

26 |

@user-xc9fn8cz4x

2 months ago

Mosh you trully are an amazing teacher anyway this is my answer to ex3 weight= int(input("Weight: ")) unit= input("(K)g or (L)bs: ") if 'k' in unit or 'K' in unit: converted = weight / 0.45 print("Weight in Lbs: " + str(converted)) elif 'l' in unit or 'L' in unit: converted = weight * 0.45 print("Weight in kgs: " + str(converted))

15 |

@matthewrennie1110

4 months ago

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

158 |

@everestdennis4792

2 years ago

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.

2.7K |

@wiiori4618

3 months ago

I learned so much in one hour and actually did all the examples. Great content.

5 |

@ilyahohenstein692

2 months ago

this was very useful. I got stuck at 50% on a python course, and found this to be very helpful to go over everything I had seen on that class from a different angle. The way you talk goes more at the speed that I can process information. I will be watching the 6hr full python course for beginners to cement all this info.

5 |

@meilinfjellstad7168

10 months ago

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.

2.4K |

@WingZeroType

2 months ago

Thanks for this. Getting back into coding after almost a decade away and this was a great way to be introduced to the syntax of a new language

1 |

@nadiuhh98

3 weeks ago

i have a midterm next week and this covers everything we've learned in class so far! currently studying along at home w my flashcards. i really liked the "remote" analogy, the way you explain error messages and what data types can and cant do! thank you so much!

1 |

@Proche27

7 months ago

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

523 |

@bigsteppa42

3 years ago

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

490 |

@CyberEd24

4 weeks ago

Hi Mosh! I am learning Python for automation. I just graduated in Cybersecurity and computer networks, and I found your video very helpful! Thanks!

1 |

@claydice1315

6 months ago

Iโ€™m 32 years old. Father of 3. Dead end job after dead end job. Finally sat down with my wife and talked about what Iโ€™d like to do in life. Everything I said centered around technology and I really like the idea of coding/programming. Decided Iโ€™m going to see if I can learn it and if I can I will learn it and apply it and start a career. Thank you for this.

147 |

Go To Top