Python Full Course for Beginners 🐍 - Learn Python in 2022

  Рет қаралды 207,775

Programiz

Programiz

Күн бұрын

Пікірлер: 122
@programizstudios
@programizstudios 2 жыл бұрын
🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges. Try Programiz PRO: bit.ly/right-python
@zogitgaming
@zogitgaming 2 жыл бұрын
Bro I love ur website .can I know it's don't name
@nranjithkumarreddy9088
@nranjithkumarreddy9088 2 жыл бұрын
Bro it's not free at middle of class asking money 💰
@ayodexter
@ayodexter 2 жыл бұрын
Good environment to learn from. I heard you spoke about making sure one watches your previous video before this particular clip (Python Full Course for Beginners 🐍 - Learn Python in 2022), kindly direct me to the link.
@divyashreevm8315
@divyashreevm8315 2 жыл бұрын
@@nranjithkumarreddy9088 yes ur right
@JohnSmithAnythingChannel
@JohnSmithAnythingChannel 11 ай бұрын
Y'all are probably the best Python learning resource I have found, but using cuss words is NOT a good marketing strategy.
@enzy6434
@enzy6434 2 жыл бұрын
I started off learning Python when I was completely new to programming. Once I found this guys video guide series on here a year ago it was the first tutorial that actually made Python “click” for me and make sense, when other KZbin instructors and books made it far more confusing. This guy is one of the best instructors out there and has a natural affinity for explaining - I highly recommend.
@thetruth3112
@thetruth3112 2 жыл бұрын
55:20 number = float(input("Enter a number: ")) if number > 0: print(" The number is positive.") elif number < 0: print(" The number is negative.") else: print(" The number is zero.")
@thetruth3112
@thetruth3112 2 жыл бұрын
37:00 km = float(input("Enter the distance my kilometer: ")) mile = km * 0.621371 print("The distance is", mile, "mile")
@gagansalian1394
@gagansalian1394 2 жыл бұрын
55:00 number=float(input("enter the number")) if number>0: print("number is positive") elif number
@thetruth3112
@thetruth3112 2 жыл бұрын
1:18:40 languages = ["Python","Java","Swift","C","C++"] for language in languages: if language == "Swift" or language == "C++": continue print(language)
@dailymusic9444
@dailymusic9444 2 жыл бұрын
37:52 input = float(input("how much kilometer:")) print(input*0.621371,"miles")
@brahimtaal
@brahimtaal Жыл бұрын
2:43:41 result = list(range(3, 31, 3)) print(result) exercice solution
@clarkkent5363
@clarkkent5363 Жыл бұрын
(1:39:12) - When function 'add_numbers' is called with integer value 5.4, this 5.4 stored in 'n1' parameter and 'n1' value changed from default 100 to 5.4. Since no value is given during calling of function so default 'n2' value remains 1000. When this 5.4 in 'n1' is added with 'n2' default 1000, it gives {n1 + n2}{5.4 + 1000} = 1005.4 😊
@gagansalian1394
@gagansalian1394 2 жыл бұрын
1:04:15 number=int(input("enter the number")) count=10 while count>=1: product=number*count print(number,"*",count,"=",product) count=count-1
@Kidfromtheroad
@Kidfromtheroad Жыл бұрын
same 😀
@baconguy777
@baconguy777 2 жыл бұрын
47:46 exam_result = int(input("enter your marks : ")) if exam_result >= 50: print("you have passed the examination ") print("great work ! ")
@need2blend
@need2blend 19 күн бұрын
number=float(input("Enter number.. ")) if number>0: print("The number is positive", number) elif number
@thetruth3112
@thetruth3112 2 жыл бұрын
2:43:40 result = range(3, 31, 3) print(list(result))
@beigomaacademymathsclub5873
@beigomaacademymathsclub5873 2 жыл бұрын
It should be range(3,33,3)
@geethikap2706
@geethikap2706 2 жыл бұрын
54:57 #Program to check whether the give number is positive or negative or zero :) number=float(input("Enter the number:")) if number>0: print("HAHAHA, The number is POSITIVE :)") elif number
@beigomaacademymathsclub5873
@beigomaacademymathsclub5873 2 жыл бұрын
Haha, such an interactive prompt string.
@danielkuria4279
@danielkuria4279 Жыл бұрын
marks={55,64,75,80,65} marks_total=sum(marks) avarage=marks_total/5 if avarage>=80: print("Grade A") elif avarage>=60 and avarage=50 and avarage
@gagansalian1394
@gagansalian1394 2 жыл бұрын
37:50 distance=int(input("enter the number")) Miles= distance*0.621371 Print("miles is:",miles) 😁
@comododraws4208
@comododraws4208 2 жыл бұрын
in my opinion its better if you use a float cause you might wanna input for example 0.5 km , if you input 0.5 while using int will display an error , hope i helped 👍👍👍 keep learning king👑
@germanydream7495
@germanydream7495 2 жыл бұрын
numbers = 0 for numbers in range(1,31): numbers = numbers * 3 if numbers >30: break print(numbers)
@Hrcian
@Hrcian 11 ай бұрын
really guys what a magical way to tech python ,i was beginner i found thid video and i started to learn python thank you sir ❤❤❤❤
@KeyserTheRedBeard
@KeyserTheRedBeard 2 жыл бұрын
outstanding upload Programiz. I smashed that thumbs up on your video. Keep up the brilliant work.
@Anonymous-yu2mt
@Anonymous-yu2mt 2 жыл бұрын
Thank you very much for this video, it helped me out a lot! After having learned C# in school, it is so exciting to know another language being this simple and functional.
@lauralandon-lovell6585
@lauralandon-lovell6585 2 жыл бұрын
I wanted to let you know that Programiz Python app is really helpful, but I have found some things that you may want to fix. Even though they are small and most people will figure out the correct meaning on their own, it may still be confusing to some. In the section Python Operators, the English explanation of the ** operator is backwards. It says: 'The exponent operator ** raises the right operand to the power of the left. For example, 2**5 means 5 raised to the power of 2.' The example goes on to show: result = 2**5 print(result) # Output: 32 As you can see, the explanation and the example do not match. It is the left operand that is raised to the power of the right, right? This would result in 32, if 2 was raised to the power of 5, the operand on the right. I really appreciate your channel and app. Best of luck!
@hagarbenyehuda5147
@hagarbenyehuda5147 2 жыл бұрын
You are so GOOOOOD! the best teacher on youtube! awesome. great job! lots of love from Israel.
@christianneilopalla
@christianneilopalla 2 жыл бұрын
Im 98 years old and learning python for the first time thanks very nice explanation keep it up
@brightly4729
@brightly4729 2 жыл бұрын
Im 198 years old and learning python for the first time thanks very nice explanation keep it up
@christianneilopalla
@christianneilopalla 2 жыл бұрын
@@brightly4729 very nice
@akashgawande4118
@akashgawande4118 2 жыл бұрын
Thankyou very much.Its really helpful 👍🏼👍🏼👍🏼
@luismarrero9293
@luismarrero9293 2 жыл бұрын
Thanks for your content and tutorials. you guys have a lot of good professionals but sometimes it is hard to understand because the language and the method to teach . Your explanations are super clear and your method is excellent, always showing several examples so we can see the code in real time. Your timing is great at least for me that i new and old to start learning coding. Thanks again for sharing your knowledges and videos with everybody.
@PatrickDoedel
@PatrickDoedel Жыл бұрын
You are incredible, I have tried many times to get into programming, but the videos and general content are dry and not too easy to understand, your videos, however, make learning it very easy, I've been coding simple programs while watching your videos, and have seen my ability to code improve. Thank you for your work, keep it up.
@jaivignesh2922
@jaivignesh2922 Жыл бұрын
Thanks a lot man. so far the best python video I found on youtube. I am a beginner in python. Your explanation profoundly helped me to understand it much better. If I would ever ask you something with python, pls kindly provide videos on other areas of python like advanced concepts, and some techniques you personally knew. once again thanks a million
@sarifulislam6710
@sarifulislam6710 2 жыл бұрын
I'm learning C pogramming since when I was new in Pogramming.. But, We can easily learn Pythone as well as It's good choose for begainers...
@georgekantony8176
@georgekantony8176 2 жыл бұрын
Totally worth it I watched his python videos for my last sems python course 🥰
@JSamuel08
@JSamuel08 2 жыл бұрын
Thanks for all Programiz ✌🏼
@abdullahfahad6388
@abdullahfahad6388 Жыл бұрын
I looove the way you explain man
@averagejoe6890
@averagejoe6890 2 жыл бұрын
it would be great ,if you guys made job oriented courses,like manual testing,automation testing or devops or something like it,or teach the language like python using practical cases like automating browser and creating bots...you guys are doing great btw cheers
@thetruth3112
@thetruth3112 2 жыл бұрын
46:13 the output will be 1. True 2. True 3. False 4. False
@transylvanian1765
@transylvanian1765 9 ай бұрын
Python is case sensitive
@darkkronos1257
@darkkronos1257 Ай бұрын
@@transylvanian1765 1.False 2.True 3.False 4.False
@user-mm5ov5pd4l
@user-mm5ov5pd4l 2 жыл бұрын
distance_km = 2400 mile = 0.621371 distance_in_miles = (distance_km*mile) total_distance_in_miles = print("distance in miles:",distance_in_miles) is this correct?
@love_RAP
@love_RAP Жыл бұрын
yes
@ssha4556
@ssha4556 2 жыл бұрын
1:18:40 For languages is giving me headache 😫,if anyone got it give me heads up.
@AmiasYaska
@AmiasYaska 2 жыл бұрын
This is the best python course I have seen on the internet ♥️♥️
@askthewise
@askthewise Жыл бұрын
Thank you so much for this great tutorial. I can't believe this is for free.
@Suyog520
@Suyog520 2 жыл бұрын
Thank You very much sir. I was wandering from one video to other searching for the one in which i feel like learning] and I got it .Your explanations are wonderful .
@Suyog520
@Suyog520 Жыл бұрын
haha nothing learned till now just was a spark that time for a few days :(
@snigdadembla
@snigdadembla Жыл бұрын
339.5792515 miles km = 546.5 miles = 0.621371 # Total Kms calulated in Miles test1 = (km * miles) print (test1)
@umamaheswararaogajula8646
@umamaheswararaogajula8646 2 жыл бұрын
Next level &good explanation
@user-RSNN
@user-RSNN Жыл бұрын
thank u very much
@sowmyakondeti1104
@sowmyakondeti1104 2 жыл бұрын
Please upload vedios on core java concepts completely.
@icemac6823
@icemac6823 2 жыл бұрын
So easy to learn such a difficult programming language.
@beigomaacademymathsclub5873
@beigomaacademymathsclub5873 2 жыл бұрын
G2K
@mahendranath2504
@mahendranath2504 Жыл бұрын
wow awesome liked and subscribed
@sloops4398
@sloops4398 8 ай бұрын
Is there any combination like in excel where i can print < with Alt + 60 in Python?
@Sanikamogaveera2006
@Sanikamogaveera2006 6 ай бұрын
Nice explanation
@greenleaph5145
@greenleaph5145 Жыл бұрын
Thank you for posting this crash course video on YT. I sped up at 2x , 1.75x, and 1.5x speeds and finished in less than 3 hours.
@artemhuza
@artemhuza Жыл бұрын
Thank you so much!
@ryanjackson12321
@ryanjackson12321 2 жыл бұрын
I'm paying devry for a degree while I'm using your app to learn... what a world.
@akramhp
@akramhp 2 жыл бұрын
You done great bro
@ayodexter
@ayodexter 2 жыл бұрын
Good environment to learn from. I heard you spoke about making sure one watch your previous video before this particular clip, kindly direct me to the link.
@abhishekmi2
@abhishekmi2 Жыл бұрын
Only the issue is volume is tool low as compared to other videos its 50% please buy some good audio recording equipment that measures the audio quality
@sajadmss3927
@sajadmss3927 2 жыл бұрын
Thank you boss you are the best
@dhyanibelani8616
@dhyanibelani8616 11 ай бұрын
great tutorial
@legal_music
@legal_music Жыл бұрын
Good Teacher
@mahamshahbaz9917
@mahamshahbaz9917 2 жыл бұрын
Damn. his typing speed is faster than dream's speed runs
@gagansalian1394
@gagansalian1394 2 жыл бұрын
1:01:20 5 6 7 8 9 10
@idrismuhammed1131
@idrismuhammed1131 Жыл бұрын
Hi good day sir am Idris from Nigeria I learned a lot from you thank you sir one's again
@rohanpaul7657
@rohanpaul7657 Жыл бұрын
The way you teach is awesome and every bit of your explanation gives clarity to understand the topics very well ,thank you
@ASITGOYAL_COMMONMAN
@ASITGOYAL_COMMONMAN 2 жыл бұрын
pls send videos related to turtle extensions in python
@Reeve-_-
@Reeve-_- Жыл бұрын
Thank you for your honest effort. It was very helpful.
@grigoldvali4124
@grigoldvali4124 2 жыл бұрын
@Programiz Hallo my friend can you teach us and make video to to build currency convertor? thanks a lot .🙂
@ABHIJITKARMAKARrkmania
@ABHIJITKARMAKARrkmania 2 жыл бұрын
Other languages like, java ,c video in one please uploaded
@NoorUllah-rm6un
@NoorUllah-rm6un Жыл бұрын
Do you have Hindi language channel for python programming language reply Plz
@thetruth3112
@thetruth3112 2 жыл бұрын
2:16:50 1. k 2. d 3. Talk is cheap. show me the programming.
@baconguy777
@baconguy777 2 жыл бұрын
thank you
@senpai1026
@senpai1026 2 жыл бұрын
1:20:17
@parul5669
@parul5669 Жыл бұрын
Mam/ sir !!! I have no background in computer science & i am Arts student..... Will i be able to learn Python???? Will this feild really suit me ???..
@akulavara2940
@akulavara2940 Жыл бұрын
If you can invest your time to practice a new programming language then degree stream will not be a barrier.
@parul5669
@parul5669 Жыл бұрын
@@akulavara2940 kk
@aegonhiresh8272
@aegonhiresh8272 2 жыл бұрын
Hey guys keep goin'
@GLITCHMAN_Hacker
@GLITCHMAN_Hacker 2 жыл бұрын
Just noting you that you spelt language wrong in 3:59:04.
@everything-CPAD
@everything-CPAD 9 ай бұрын
hello I love it
@gagansalian1394
@gagansalian1394 2 жыл бұрын
46:10 True True False False
@iamMtBro
@iamMtBro 2 жыл бұрын
Are You from Nepal?
@SharleneFeijooPacheco
@SharleneFeijooPacheco Жыл бұрын
A module you have imported isn't available at the moment. It will be available soon. Eso se da cuando quieres usar los métodos de las listas, pero únicamente si el nombre de la listas termina en "os".
@Shortsyt711
@Shortsyt711 2 жыл бұрын
12:00
@GLITCHMAN_Hacker
@GLITCHMAN_Hacker 2 жыл бұрын
Nice
@anushapulukuri9395
@anushapulukuri9395 2 жыл бұрын
Python compiler link
@dakshjain631
@dakshjain631 2 жыл бұрын
19:30
@akxl.4948
@akxl.4948 2 жыл бұрын
excuse me sir can you tell me how to write a multi line strings
@syed_hussaini
@syed_hussaini 2 жыл бұрын
Use triple quotation marks for instance print(''' Hi akxl, How is going. ''')
@everything-CPAD
@everything-CPAD 9 ай бұрын
I love it
@PeterMorgan100
@PeterMorgan100 Жыл бұрын
Good stuff
@brahimtaal
@brahimtaal Жыл бұрын
can you make a cours about problemes solving with python (I want to practice myself) and thank ♥
@rohanpaul7657
@rohanpaul7657 Жыл бұрын
result=list(range(0,31,3)) print(result)
@Yuvraaj_KG
@Yuvraaj_KG 8 ай бұрын
Don't take it personally please but why are you looking everywhere
@ayercoderx
@ayercoderx 9 ай бұрын
do you belong to nepal
@Ab_219
@Ab_219 10 ай бұрын
I can't install it in my laptop
@sandeepdixit4436
@sandeepdixit4436 2 жыл бұрын
is this python 2 or 3 ?
@beigomaacademymathsclub5873
@beigomaacademymathsclub5873 2 жыл бұрын
It's 3
@snigdadembla
@snigdadembla Жыл бұрын
1. False 2. True 3. False 4. False >
@prazu3584
@prazu3584 Жыл бұрын
Daaai tapai nepali ho?
@thetruth3112
@thetruth3112 2 жыл бұрын
1:01:30 the answer is : 5 6 7 8 9 10
@Aishna0320
@Aishna0320 8 ай бұрын
@creative_knowledge69
@creative_knowledge69 2 жыл бұрын
Bro python lo all topics enduku chepparu evvaru🤔
@silentmary9434
@silentmary9434 2 жыл бұрын
max e vedio lo unna contents manaki vasthe avi chala easy broh
@respect5116
@respect5116 2 жыл бұрын
Correct ga cheypav
@VuNguyen-uu6tb
@VuNguyen-uu6tb Жыл бұрын
Could you please tell me how come you didn't get near-sighted (myopia) ? It is so amazing to see an IT guy who is not near-sighted !
@manisakatwal3434
@manisakatwal3434 2 жыл бұрын
🤗🤗🤗
@Kidfromtheroad
@Kidfromtheroad Жыл бұрын
my parents are happy now that i always pass my computers tests
@umairelahi4837
@umairelahi4837 Жыл бұрын
I want to buy your python complete course content for my institute if you're interested then reply to me.
@thetruth3112
@thetruth3112 2 жыл бұрын
1:04:28 number = float(input("Enter number: ")) count = 10 while count >= 1 : product = number * count print(int(number), "X", int(count), "=", int(product)) count = count - 1
@deepalakshmis.2737
@deepalakshmis.2737 5 ай бұрын
2:43:36 result=list(range(3,31,3)) print(result)
Python Full Course for Beginners
6:14:07
Programming with Mosh
Рет қаралды 42 МЛН
Complete Python Course For Beginners: Python Tutorial For 2024
3:26:01
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Python Full Course 🐍
3:35:07
Amigoscode
Рет қаралды 864 М.
Python Tutorial for Beginners - Learn Python in 5 Hours [FULL COURSE]
5:31:30
TechWorld with Nana
Рет қаралды 6 МЛН
Learn Python With 5 Projects - From Beginner to Advanced
2:51:09
Tech With Tim
Рет қаралды 58 М.
Алгоритмы на Python 3. Лекция №1
1:20:50
Тимофей Хирьянов
Рет қаралды 5 МЛН
Python Functions (The Only Guide You'll Need) #12
16:57
Programiz
Рет қаралды 613 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Python As Fast as Possible - Learn Python in ~75 Minutes
1:19:41
Tech With Tim
Рет қаралды 1,8 МЛН
Learn JavaScript - Full Course for Beginners
3:26:43
freeCodeCamp.org
Рет қаралды 18 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН