Python Tutorial For Beginners In Hindi (With Notes) 🔥

Поделиться
HTML-код
  • Опубликовано: 24 сен 2024

Комментарии • 123 тыс.

  • @wrestlingstar-wwe1946
    @wrestlingstar-wwe1946 3 года назад +8639

    Dil se shukriya Harry sir ..love u 3000💖💖💖

  • @CodeWithHarry
    @CodeWithHarry  2 года назад +3805

    Never thought that an educational video like this would get 22M views 😍😍😍😍😍😍
    Thanks for all the love and support

  • @entertainingworld1546
    @entertainingworld1546 2 года назад +10971

    He is Alakh pandey for engineering student💓😍

  • @aryangoel2775
    @aryangoel2775 4 месяца назад +20

    5:13:35
    post = input("Enter a post: ")
    if 'harry' in post.lower(): # here we first lowercase the whole post and then searched for "harry"
    print("Yes! the post contains the name Harry.")
    else:
    print("No! the post does not contain the name Harry")

  • @sayyedabid6548
    @sayyedabid6548 3 года назад +4378

    Guys' let's not forget he is IITians and he can earn in lakhs by utilizing his time but still he takes out some time to teach people like us in free of cost and also making notes for us which is also free . 'Hats off to you man'💜 and mad respect to you💜

    • @TechnologyMediaFlicks
      @TechnologyMediaFlicks 3 года назад +35

      Bro how to download python hand written notes

    • @aarohansharma4551
      @aarohansharma4551 3 года назад +137

      @@rohinik15 bhai talented log generally don't do regular/common jobs...they have something in them which makes them unique

    • @himanshusharma-eu8lj
      @himanshusharma-eu8lj 3 года назад +75

      But still he is earn more than lakh from youtube and there website so it's pretty good to do a job or anythingelse

    • @shivamkashyapierttech.4728
      @shivamkashyapierttech.4728 3 года назад +5

      Hatts of sir

    • @saurabhvishwakarma6676
      @saurabhvishwakarma6676 3 года назад +1

      @@rohinik15 IIT KHARAGPUR

  • @anmolkapoor4239
    @anmolkapoor4239 2 года назад +35

    5:05:10
    name = input("Enter your name : ")
    a = len(name)
    print("length of this name is " + str(a))
    if(a

  • @rockertechs1117
    @rockertechs1117 4 года назад +2874

    The guy is working hard everyday to make learning easy for us. I have never seen such a great guy 😢 in my life 🙌. You Deserve Millions of Subs ❤

    • @yadvendragurjar7153
      @yadvendragurjar7153 4 года назад +9

      Yes ,he diserve that

    • @akhileshjnair1213
      @akhileshjnair1213 4 года назад +12

      @@yadvendragurjar7153 you're absolutely right bro

    • @akhileshjnair1213
      @akhileshjnair1213 4 года назад +9

      @@niladriroy1665 start with "python" because python is easy to learn and Faster to complete.. bro

    • @akhileshjnair1213
      @akhileshjnair1213 4 года назад +3

      @@niladriroy1665 yes, definitely bro .. because c language is helpful to develop device drivers, back end networking and games

    • @crystalcode4357
      @crystalcode4357 4 года назад +18

      He deserves 100000000000000000000^1000000000000000000000000000000 subscribers

  • @atharvkumar2636
    @atharvkumar2636 4 месяца назад +11

    6:07:10 while loop se to aaram se reverse kar sakte hain, aur for loop mein range ke upar reversed use kar sakte hain, maine abhi stackoverflow pe dekha, aise kar sakte hain -
    for i in reversed(range(1, 11)):
    pass

  • @sirshendubanerjee1269
    @sirshendubanerjee1269 2 года назад +27

    5:51:27 :
    Multiplication table of a given number using while loop :
    num=int(input("Enter the number :
    "))
    i=0
    while (i

    • @Hanuman98337
      @Hanuman98337 2 года назад

      python ch 1 intro = ruclips.net/video/Fj4uf3qo3Ew/видео.html

    • @HarshSharma-et5jq
      @HarshSharma-et5jq 2 года назад +1

      Hy bro..
      you can take i=1 , instead of i = 0
      because we generally not start our table with 0.

    • @tectonic1018
      @tectonic1018 Год назад

      ​@@HarshSharma-et5jq 😅

  • @theindiannetwork
    @theindiannetwork 3 года назад +2802

    This Python course Is Really Helpful Thank You harry bro...

    • @praveennooka675
      @praveennooka675 3 года назад +18

      Have u downloaded the notes

    • @praveennooka675
      @praveennooka675 3 года назад +21

      Can u plz help me how to download it...
      It's not opening

    • @imnemo2327
      @imnemo2327 3 года назад +8

      @@praveennooka675 mine are working

    • @praveennooka675
      @praveennooka675 3 года назад +4

      Please tell me step wise

    • @praveennooka675
      @praveennooka675 3 года назад +12

      For me after downloading from Google drive its coming "this file is unsupported"

  • @priyankarai5713
    @priyankarai5713 4 года назад +1349

    Code with Harry > whitehatjr am I correct hit like.
    Thanks for this much like I am shocked
    1k like woow

  • @_W_DipyamanGhosal
    @_W_DipyamanGhosal 3 месяца назад +10

    6:45:54 # Q4) Write a recursive function to find the sum of first n natural numbers
    def natural_num(i):
    return i * (i + 1)/2
    n = int(input("Enter the value of n: "))
    sum_natural_num = natural_num(n)
    print(f"The sum of n natural numbers is: {int(sum_natural_num)}")
    Thanks harry sir!!! Wrote my first function code by myself

  • @shadowgamer5971
    @shadowgamer5971 8 месяцев назад +25

    6:06:50
    Most easy way👇
    n=int(input("Enter the number"))
    for i in range(1,11):
    print(f"{n}X{11-i}={n*(11-i)}")

  • @ahmedfakih732
    @ahmedfakih732 2 года назад +45

    6:07:15 reverse multiplication table:
    num=int(input("Enter the number: "))
    for i in range(10,0,-1):
    print(str(num)+" X "+str(i)+" = "+str(num*i))

  • @shreevitthleshyuvaparishad
    @shreevitthleshyuvaparishad Год назад +71

    ►TimeStamps:
    Course Logistics: 00:00:00
    Chapter 0 - Introduction: 00:08:58
    Chapter 1 - Modules, Comments & Pip: 00:14:17
    Chapter 1 - Practice Set: 00:33:10
    Chapter 2 - Variables & Data Types: 00:44:35
    Chapter 2 - Practice Set: 01:25:10
    Chapter 3 - Strings: 01:39:10
    Chapter 3 - Practice Set: 02:16:56
    Chapter 4 - Lists & Tuples: 02:35:04
    Chapter 4 - Practice Set: 03:07:10
    Chapter 5 - Dictionary & Sets: 03:20:12
    Chapter 5 - Practice Set: 03:57:25
    Chapter 6 - Conditional Expressions: 04:19:21
    Chapter 6 - Practice Set: 04:48:53
    Chapter 7 - Loops in Python: 05:14:34
    Chapter 7 - Practice Set: 05:45:11
    Chapter 8 - Functions & Recursion: 06:07:35
    Chapter 8 - Practice Set: 06:36:28
    Project 1 - Snake, Water, Gun Game: 06:52:30
    Chapter 9 - File I/O: 07:06:55
    Chapter 9 - Practice Set: 07:28:11
    Chapter 10 - Object Oriented Programming: 08:08:38
    Chapter 10 - Practice Set: 09:17:22
    Chapter 11 - Inheritance: 09:48:30
    Chapter 11 - Practice Set: 10:55:24
    Project 2 - The Perfect Guess 11:37:01

    • @fredwick6051
      @fredwick6051 Год назад +4

      ahhh finally someone did it

    • @AnantShah-bj1nv
      @AnantShah-bj1nv Год назад +3

      thanku chiman

    • @arpittyagi2649
      @arpittyagi2649 Год назад

      @@fredwick6051 chutiye description may master ne phle he daal rakhe hai😂

    • @nitinnegi7659
      @nitinnegi7659 Год назад +4

      @@fredwick6051 "description" left the chat🤧🤧

  • @Erdeepak510
    @Erdeepak510 Месяц назад +4

    9:41:12 tak khatm Kiya aur bahut kuch samajh aya bhi aur nahi bhi. But 2-3 bar dekhunga complete video aur practice karunga to smjh me ajayega.
    Thank you Harry sir

  • @shubham_rajak
    @shubham_rajak 2 года назад +25

    5:05:10
    4th assignment
    string = input("Enter your name
    : ")
    if(len(string)

  • @kushal6525
    @kushal6525 8 месяцев назад +41

    6:7:19 number = int(input("ener a number -> "))
    for i in range(10 , 0 , -1):
    print(str(number) + " x " + str(i) + " = " + str(i*number))

  • @bhuwannath61
    @bhuwannath61 3 года назад +33

    5:05:00
    ☺is it right sir ?
    Qn. 4.
    n=input("Enter Your Name:
    ")
    length=len(n)
    if(length

    • @sidhuvines9789
      @sidhuvines9789 3 года назад +2

      I know nothing about python without it's name can I watch or learn from this video

    • @saurabhtamta7295
      @saurabhtamta7295 3 года назад +2

      @@sidhuvines9789 easily bro.....if u haven't even done programming in your life...u will still find this course super easy.👍👍go for it

    • @sidhuvines9789
      @sidhuvines9789 3 года назад +2

      @@saurabhtamta7295 thanks ❤️

    • @anuragrana301
      @anuragrana301 3 года назад +2

      @@sidhuvines9789 Yes, Bro

    • @shshsh1296
      @shshsh1296 3 года назад

      Bhai jo python ka print function h Agar hum game ya koi app Bana rahe h toh print function kaha use hoga ? Koi help krdo

  • @Tanushreevaitage
    @Tanushreevaitage 2 месяца назад +1

    time 6:45
    def factorial_recursion(n):
    if n == 1 or n == 0:
    return 1
    return n + factorial_recursion(n-1)
    n = 24
    f = factorial_recursion(n)
    print(f)

    • @DhirajNimburkar
      @DhirajNimburkar 21 день назад

      Chapter 9 File i o run huwa kya proper ?

  • @ranu2508
    @ranu2508 2 года назад +30

    Chapter 4 - Practice Set: 03:07:10
    # Write a program to count the number of zeros in the following tuple:
    a = (7, 0, 8, 0, 0, 9)
    print(a.count(0))
    run
    3
    Process finished with exit code 0
    Thank you sir

  • @Ranitabh
    @Ranitabh Год назад +75

    Hello harry Sir,
    I know its way late but yes. I am a mechanical engineer who ha no idea about coding but I really wanted to learn it for building my skills. And I really owe you a honest Thankyou for making out things so simple for me.

    • @Erdeepak510
      @Erdeepak510 Месяц назад

      Did you change your from mechanical to IT?

  • @faisalbahar5439
    @faisalbahar5439 Год назад +62

    4:34:20 (Chapter 6: conditional expressions). The output is greater. I also wrote a program.... "Wow, I've been following this Python course on RUclips, and I can't express how incredibly helpful it's been for me. The way Harry explains complex concepts in such a clear and engaging manner is truly commendable. I've gained a solid understanding of Python thanks to this course. Thank you for putting in the effort to create such valuable content!"

  • @HarmanpreetSingh1127
    @HarmanpreetSingh1127 10 дней назад +1

    5:51:33
    # Problem 3
    num = int(input("Enter a number: "))
    i = 0
    while i < 11:
    print(f"{num} x {i} = {num*i}")
    i = i + 1

  • @bhajanguru2.071
    @bhajanguru2.071 2 года назад +32

    5:05:25
    Q 4
    name = input("Enter your name
    ")
    if(len(name)10):
    print("name contain more than 10 charectors")
    else:
    print("name contain 10 charectors")
    # Full solution

  • @ajaypathak2214
    @ajaypathak2214 4 года назад +1769

    World :- nothing is free
    Harry :- 😂😂 everything is free in Harry's worlds .
    Thanks Harry bhai 👍

    • @pokemonplace7085
      @pokemonplace7085 4 года назад +12

      Shi hai bhai

    • @bishalranjan5766
      @bishalranjan5766 4 года назад +7

      Very true

    • @AnkitSingh-fp5og
      @AnkitSingh-fp5og 3 года назад +21

      Bhai ,magnet brains channel pe jao waha class 4-12 tak ka saara padhai free of cost.
      Physics wallah physics ka free of cost padhai , Aman dhattarwal leke aa rhe hai a new revolution

    • @nayeemsyed7030
      @nayeemsyed7030 3 года назад +3

      really

    • @raaga_rockz4317
      @raaga_rockz4317 3 года назад +3

      Respect

  • @aayushkumar6744
    @aayushkumar6744 4 месяца назад +2

    5:56:20
    n=int(input())
    i=0
    sum=0
    while i

  • @tushar_bajpai
    @tushar_bajpai 3 года назад +25

    5:05:16
    name = input("enter name bro
    ")
    if(len(name)

    • @mohdaman5928
      @mohdaman5928 3 года назад

      nice bro

    • @sugamsakshena4022
      @sugamsakshena4022 3 года назад +1

      @@mohdaman5928 if else toh easy hai. For loop and nested mein phat jatti hai😂

    • @gamerx2.079
      @gamerx2.079 3 года назад

      Bro ye program pehle hi crash ho jayega kyuki tumne if(len(name)

  • @v2mki523
    @v2mki523 3 года назад +61

    this guy is making this payable content free and making the life of people better by giving it free publicly. HATS OFF to him

    • @azzayshakya
      @azzayshakya 3 года назад +1

      Bhai file shi se download nhi ho rhi hai ,,kya kro ,please reply 😔😔

    • @Aditya-yx9qx
      @Aditya-yx9qx 3 года назад +1

      @@azzayshakya Bro woh ek drive folder ke format mein khulegi, jiske andar saara content hai. Wha right side mein download ka option aata hai. Click karne ke baad download start ho jayega. Aur uske baad uss zip file ko unzip kardo

    • @sakshivij5822
      @sakshivij5822 3 года назад

      @@Aditya-yx9qx Bhai mai nai hello world sahi likha tab bhi incorrect dikha raha plz help

    • @Aditya-yx9qx
      @Aditya-yx9qx 3 года назад

      @@sakshivij5822 python interpretor select karo aur file name ke end mein .py likhdo, agar code sahi hai toh kaam karna chahiye
      print("Hello World") OR
      A="Hello World"
      print(A)

    • @ArmyLover-co1wy
      @ArmyLover-co1wy 3 года назад

      Sir kya window 7 me python run ho sakta hai

  • @Sunny-ip7sg
    @Sunny-ip7sg 2 года назад +58

    Starting this course on the first day of 2022 and I guess this is one of the best start i could ever hope for. Thanks for bringing us such an amazing course for free. I'll be back after finishing this course now..

    • @gameajaye7925
      @gameajaye7925 2 года назад +4

      I also started on 2022 first January

    • @Sunny-ip7sg
      @Sunny-ip7sg 2 года назад +2

      @@gameajaye7925 it's like a motivation.. And starting the new year with learning something new is entirely a great feeling itself hopefully... I won't give up on my learning till the end of the year until I achieve what I want. And these courses make it easier.

    • @surajbarnwal
      @surajbarnwal 2 года назад +2

      I also

    • @AmitAmit-kv5zv
      @AmitAmit-kv5zv 2 года назад +1

      Can any one of you please help me to install python in my laptop(win10)

    • @Sunny-ip7sg
      @Sunny-ip7sg 2 года назад +2

      @@AmitAmit-kv5zv follow the same steps as harry bhai did.

  • @funnystation883
    @funnystation883 3 месяца назад +3

    6 write as python program to calculate square of a number entered by a user
    a = input("Enter the number")
    a = int(a)
    sqr = (a*a)
    print("the square of the number is ", sqr)

  • @lawinaction.
    @lawinaction. Год назад +122

    5:05:57
    Cho 6:-practice set
    Pr no :4
    Username=input("enter your name")
    a=len(Username)
    If a

  • @ManojKumar-dt2ez
    @ManojKumar-dt2ez 9 месяцев назад +29

    4:33:53 The value is greater.
    5:05:20 Syntax: username = input("Enter your username") | if(len(username) < 10): print("Yes") else:print("not")
    5:23:30 Ex:1 Ouput : Harry Harry Harry Harry Harry
    Q3. 5:51:40 n = int(input("Enter the number : ")) | a = 1 | while (a

    • @sanketsawant6447
      @sanketsawant6447 7 месяцев назад +1

      bro your 5:23:30 code was wrong i tried to correct it.
      n = int(input("Enter the number : "))
      a = 1
      while (a

  • @darshanbasnet9965
    @darshanbasnet9965 4 месяца назад +20

    This is my first programming in my life. Thanks for such a clear tutorial.

  • @skshatty
    @skshatty 2 года назад +20

    Chapter 8 6:45:19
    n= int(input("Enter the value of n is "))
    def sum(n):
    if n==1:
    return 1
    return sum(n-1) + n
    s = sum(n)
    print(s)

  • @raintialriil5736
    @raintialriil5736 Год назад +25

    3:19:36
    a=(7,0,8,0,0,9)
    k= a.count(0)
    print(k)
    Output - 3
    This course is nice Harry sir ❤️

  • @pranavamohan
    @pranavamohan 4 года назад +354

    Udemy:- ''Learn python basics for just 500 rupees!!!!"
    Harry Bhai:- Teaches python from a to z.
    Udemy's reaction:- 😱😱😱
    Thank you Harry bhai for many awesome tutorials. Just because of you I learned machine learning in python for free from the machine learning playlist. I also learned python from the 1 hour python video that you uploaded before. Thank you so much!!!!!!! You deserve millions of subscribers.

    • @yashpruthi1668
      @yashpruthi1668 4 года назад +4

      This course is super haary bhai
      Pls harry bhai make. A course or road map to become master in video editing .

    • @carnotengine7
      @carnotengine7 4 года назад +2

      @umair khan Useful nai Bohot useful hai

    • @vaibhav_aggarwal6
      @vaibhav_aggarwal6 4 года назад +2

      @@carnotengine7 bro can u suggest which tutorial i need follow..
      henry 12 hour tutorial or absolutely beginners short henry tutorial..i am new into these

    • @clot27
      @clot27 4 года назад

      Soon he reach 1 million

    • @carnotengine7
      @carnotengine7 4 года назад +1

      @@clot27 yeah now it's 700k

  • @safalswayam6927
    @safalswayam6927 21 день назад +1

    6:45:27
    def sum_of_integer(n):
    if n

  • @MuhammadAli-tz8zd
    @MuhammadAli-tz8zd 3 года назад +25

    if someone is having issue playing playsound module ....while copying the path "backslash" (\)is copied ...you need to change it to "slash(/)" dont use back slash in path .. i hope it works for you

    • @soulmusic3838
      @soulmusic3838 3 года назад +1

      thanks bro

    • @DevSharma_31
      @DevSharma_31 3 года назад +1

      Bro can playsound module play in python idle...i dnt have vs code

    • @diobrando1253
      @diobrando1253 3 года назад +1

      or use (r"path")

    • @geeta587
      @geeta587 3 года назад

      very very thanks bro

    • @Sudeep-zk2hi
      @Sudeep-zk2hi 3 года назад

      Not working, bro pls help

  • @kanishkamboj9802
    @kanishkamboj9802 Год назад +78

    TimeStamps:
    Course Logistics: 00:00:00
    Chapter 0 - Introduction: 00:08:58
    Chapter 1 - Modules, Comments & Pip: 00:14:17
    Chapter 1 - Practice Set: 00:33:10
    Chapter 2 - Variables & Data Types: 00:44:35
    Chapter 2 - Practice Set: 01:25:10
    Chapter 3 - Strings: 01:39:10
    Chapter 3 - Practice Set: 02:16:56
    Chapter 4 - Lists & Tuples: 02:35:04
    Chapter 4 - Practice Set: 03:07:10
    Chapter 5 - Dictionary & Sets: 03:20:12
    Chapter 5 - Practice Set: 03:57:25
    Chapter 6 - Conditional Expressions: 04:19:21
    Chapter 6 - Practice Set: 04:48:53
    Chapter 7 - Loops in Python: 05:14:34
    Chapter 7 - Practice Set: 05:45:11
    Chapter 8 - Functions & Recursion: 06:07:35
    Chapter 8 - Practice Set: 06:36:28
    Project 1 - Snake, Water, Gun Game: 06:52:30
    Chapter 9 - File I/O: 07:06:55
    Chapter 9 - Practice Set: 07:28:11
    Chapter 10 - Object Oriented Programming: 08:08:38
    Chapter 10 - Practice Set: 09:17:22
    Chapter 11 - Inheritance: 09:48:30
    Chapter 11 - Practice Set: 10:55:24
    Project 2 - The Perfect Guess 11:37:01

    • @mrunaljadhav3683
      @mrunaljadhav3683 11 месяцев назад +10

      Already available the bhai....kyu mehnat ki

    • @Sharayu_dreams22
      @Sharayu_dreams22 9 месяцев назад +1

      Hi how to download program files of this course?

    • @Innocent-g7l
      @Innocent-g7l 6 месяцев назад

      ​@@mrunaljadhav3683 General Syed Asim Muneer zindabad 🫡

  • @shmer4966
    @shmer4966 4 года назад +1401

    The best Python video on youtube. Great work indeed.

    • @vinamravashishth5217
      @vinamravashishth5217 4 года назад +14

      truly said

    • @liltej356
      @liltej356 4 года назад +12

      When I Open Powershell and type Python I am reditected To Microsoft Store

    • @sauravsharma8461
      @sauravsharma8461 3 года назад +7

      @@liltej356 is your problem fixed now ??

    • @sreenivasuluvutti281
      @sreenivasuluvutti281 3 года назад +9

      How to download material please tell

    • @swapnilsharma1561
      @swapnilsharma1561 3 года назад +9

      can any1 tell me plzzz dat should i go thru his previous video on python tutorials or dis video is sufficient...m a beginner

  • @atharvaxxx
    @atharvaxxx Месяц назад +1

    Thank you so much Harry Bro!
    Finally, I have completed this video, Learnt Python from scratch and now im on my way to learn more
    God Bless You ❤

  • @APinfrarealty
    @APinfrarealty 3 года назад +35

    I am a Beginner, Today I have completed my fifth chapter , from 1st to 5th I never get bored. Thanks to harry🤓 using simple language to teach each and every one Free of Cost🤓🤓🤓🤓 thank you sir, Bass main esse jayda emphasis naahi kar sakta🙏🙏

    • @g.v.snitin8825
      @g.v.snitin8825 3 года назад +1

      What's u r age bro

    • @APinfrarealty
      @APinfrarealty 3 года назад

      31

    • @vascinx3174
      @vascinx3174 3 года назад +1

      I'm in 4th chapter, it's been only a few weeks I've started studying.Not a pro but I started understanding how the program works.After studying python and mastering it I will move on to more programming languages like C, C#, C++, Java, Javascript, PHP, Ruby, Go, and maybe more.All The Best.

    • @deepanshugarg5285
      @deepanshugarg5285 3 года назад

      @@vascinx3174 i think you should continue with python only or you may learn kotlin.. as it i one of the growing programming languages.. it will surely help your to get succes

    • @abhaypratapsingh262
      @abhaypratapsingh262 3 года назад +1

      Please tell someone how to download notes🙏🙏🙏🙏

  • @nishankrathore9038
    @nishankrathore9038 3 года назад +21

    a = int(input("Enter an integer number"))
    print("the square of integer number is", a*a)

  • @rag2273
    @rag2273 3 года назад +22

    I have no word to thank you sir
    ek teacher kitna desperate ho sakta he students ko sikhane ke liye. Jab tak me ye coding ki dunya se jura rahunga tab tak apko yad rakhunga. Love you sir.

    • @gladiator7472
      @gladiator7472 3 года назад +1

      MATLAB tum Kuch din ke Lia Kia coding Sik rahaho ? Jo bol Raha ho ki jab tai me ye coding .......

  • @mohdnameer2484
    @mohdnameer2484 4 месяца назад +2

    def multiplication (n):
    for i in range(1,11)
    print(f{n} x {i}={i*1}
    multiplication(8)

    • @prachipandey623
      @prachipandey623 2 месяца назад

      Have you seen the output of this ? I think you need to Recheck!!

  • @harshranjan9282
    @harshranjan9282 3 года назад +50

    5:05:18
    name=input("Enter username
    ")
    if(len(name)>10):
    print("username can't be greater than 10")
    Thank you very much for the course bhaai

  • @MohanKumar-qx7cj
    @MohanKumar-qx7cj 4 года назад +191

    This guy is a real legend, who is helping youngsters and professionals who are looking to build their career.. *Hands Off Brother* --> Take a Bow..

  • @_AmitabhShukla
    @_AmitabhShukla 2 года назад +25

    5:05:09 use len function to calculate the length of string(username) and apply conditionals to print out the desired result.

  • @zoyaakhtar6719
    @zoyaakhtar6719 Месяц назад

    num = int(input("enter the number"))
    i = 0
    while i>>pr 3 ans loops

  • @sarthakshelar5130
    @sarthakshelar5130 3 года назад +37

    There are very less youtubers like you who are teaching python for real life problems
    Thank you sir

  • @atharvgadekar5408
    @atharvgadekar5408 3 года назад +21

    5:05:56 Q4)- a = input("enter the username :")
    b = (len(a))
    if(b

    • @gwo3210
      @gwo3210 2 года назад

      Thnx for the help I also made my program using ur code but made few changes thnx it worked

  • @yushsingla9905
    @yushsingla9905 4 года назад +266

    His content is evergreen. People will watch it for years.

  • @kousarmohammedali1373
    @kousarmohammedali1373 2 месяца назад +2

    Today is 25th.July 2024. i am senior citizen i stated learning python course by listening your tutorial
    so i am v happy and enjoying. thanks

  • @ektaagrawal3848
    @ektaagrawal3848 Год назад +39

    3:19:05 - Solution of 5th Question -> print(a.count(0)) and Output = 3. Amazing Session ☺

  • @krissbasa6838
    @krissbasa6838 2 года назад +32

    I am just disappointed why this channel hasnt got millions of subs ...This man makes time for us and works very hard so that learning to code will be very easy for us by giving notes projects and every code written in this course....Hats off to you Harry Bhai😊😊😊thank you so much for such amazing learning experience
    5:51:35 Answer 3:-
    num = int(input("Enter your number"))
    i = 0
    while i < 10:
    i = i+1
    print(str(num) + "X" + str(i) + "=" + str(num * i))

    • @0xkaisen
      @0xkaisen 2 года назад

      also
      print(f"{num} X {i} = {num*i}")

    • @rkay7192
      @rkay7192 2 года назад

      Ma k lawde 3 milliln hai uske

    • @Thetechpod-podcast
      @Thetechpod-podcast 2 года назад

      jalwa hai Harry bhai ka #codewithharry😄

  • @NutanMali-ox5mf
    @NutanMali-ox5mf 3 дня назад

    I am a Python developer today, all thanks to this course and following Harry's teachings. He is a true real-world teacher, and 'thank you' feels too small to express my gratitude. I owe my progress and success to his invaluable guidance. Heartfelt thanks, Harry Sir!

  • @saurabhjoshi8001
    @saurabhjoshi8001 4 года назад +44

    This guy is taking more effort to make the students and professionals to understand new languages...Hats off to you Harry..You are truly a gem...

  • @seemadesai7876
    @seemadesai7876 2 года назад +51

    This python course is really helpful.I watched both the parts of this course and now I am watching your django course to start web development in python.

    • @aikansh7525
      @aikansh7525 2 года назад

      have u completed full 11 hours course??

    • @seemadesai7876
      @seemadesai7876 2 года назад

      @@aikansh7525 yes and also the part 2 of the video

    • @aikansh7525
      @aikansh7525 2 года назад

      @@seemadesai7876 so u are done with all python basics ? and now u are on web development?was this couse helpful and how much time it took for you to complete both videos?

    • @ameenkazi4646
      @ameenkazi4646 2 года назад

      @@seemadesai7876 yes l have started this course 12 days ago and now l am on chapter 5

    • @Lifestyleofsd
      @Lifestyleofsd 2 года назад +1

      @@ameenkazi4646 can you please share the link of part 2

  • @shubhamsable6806
    @shubhamsable6806 2 года назад +24

    5:05:18
    text = input("Enter the username:
    ")
    if (len(text)

  • @SumitaChatterjee-wb5wh
    @SumitaChatterjee-wb5wh 4 месяца назад +2

    Harry Bhai for you
    def a (b):
    return c*I
    c=int(input("Enter Your Number")
    for I in range(1,11):
    Print("The Table Of Input Number =",c*i)

  • @kuntalmondal5439
    @kuntalmondal5439 2 года назад +23

    5:13:28
    chapter 6: question 7
    post=input("Enter the post
    ")
    post=post.upper()
    if "KUNTAL" in post:
    print("yes the post is talking about Kuntal")
    else:
    print("The post is not talking about Kuntal")

    • @imranabbas1786
      @imranabbas1786 2 года назад

      thank you

    • @sawerashehzadi323
      @sawerashehzadi323 2 года назад

      this was a good one

    • @imranabbas1786
      @imranabbas1786 2 года назад

      @@sawerashehzadi323 are you a beginner?

    • @sawerashehzadi323
      @sawerashehzadi323 2 года назад

      @@imranabbas1786 yes, i started the course 5 days ago..
      1 hour per day

    • @imranabbas1786
      @imranabbas1786 2 года назад

      @@sawerashehzadi323 so are you in university or doing the course for knowledge?

  • @eishathakur5069
    @eishathakur5069 3 года назад +38

    4:59:06
    a = int(input("please enter the marks you got in english"))
    b = int(input("please enter the marks you get in maths "))
    c = int(input("please enter the marks you get in sci"))
    if(a>40):
    print("you are passed in this exam")
    if(b>40):
    print("you are passed in this exam")

    if(c>40):
    print("you are passed in this exam")
    elif(a>33):
    print("you are just passed")
    elif(b>33):
    print("you are just passed")
    elif(c>33):
    print("you are just passed")
    else:
    print("fail")

  • @chinmaymeghare9414
    @chinmaymeghare9414 4 года назад +47

    After Some Years Harry Bhai Will Launch his own "Programming Language"😃
    All the Best 👍🏻
    This Python Course Is Helpful

    • @techcoder1233
      @techcoder1233 4 года назад +1

      Yes

    • @banshkumar4584
      @banshkumar4584 4 года назад +1

      Well mark the date I will come true.

    • @72virginsgang35
      @72virginsgang35 4 года назад

      Lodu khudki programming language stfu
      Ye bas basics hai python advanced python machine learning based hai jiska course mostly paid hota hai

    • @surajk6550
      @surajk6550 4 года назад +1

      Thoda Jada ho gaya

    • @shama7808
      @shama7808 3 года назад

      @@72virginsgang35 bhai ye harry hai isne advanced python ka bhi course daala hai wo bhi free mai

  • @techielifeskills
    @techielifeskills Месяц назад +1

    For odd number star problem , it can be written like this as well:
    print("Enter the number for which you want to print the star")
    numbers=int(input())
    for i in range (1,numbers+1):
    print("*" * ((2*i)-1))

  • @GoGrow01
    @GoGrow01 Год назад +68

    5:05:26 CHAPTER 6 PRACTISE SET QUESTION 4
    ANS:
    username = input("Enter you name:
    ")
    chars = len(username)
    if(chars>10):
    print("This name have more than 10 alphabets")
    elif(chars==10):
    print("This name have 10 Alphabets")
    else:
    print("This name have less than 10 Alphabets")

  • @yashwantmohitepatil5874
    @yashwantmohitepatil5874 3 года назад +57

    5:05:17
    username = input("Enter your username:- ")
    print(len(username))
    if(len(username) < 10):
    print("It is less than 10")
    else:
    print("It is more than 10")
    O/P
    Enter your username:- CodeWithHarry
    13
    It is more than 10

  • @NisargGandhi-g9i
    @NisargGandhi-g9i 2 месяца назад +1

    6:45:42 def factorial_recursive(n):
    if n==0:
    return 0
    return n + factorial_recursive(n-1)
    f= factorial_recursive(4)
    print(f)

  • @harshagarwal4404
    @harshagarwal4404 3 года назад +67

    There are very less youtubers which teach the students in online mode by giving hand written notes and without cost.
    THANK YOU SIR

    • @gopro9292
      @gopro9292 3 года назад +1

      AGREE

    • @ritikaverma2039
      @ritikaverma2039 3 года назад +1

      can u plz tell me from where can I download the notes? not getting any link to download

    • @basirsaboor2367
      @basirsaboor2367 3 года назад

      39:35 p samaj nahi aya kis tarah file save ki sir na.... Kia ap giade kar sakte ha mujhe plz

    • @saurabhdaund27
      @saurabhdaund27 3 года назад

      @@ritikaverma2039 even am not getting the notes but in description i got the link ill mail you d link

    • @akshaykale9068
      @akshaykale9068 3 года назад

      @@ritikaverma2039 the link is in the description... Its a zip file so u have to extract it

  • @rashidsubhani9908
    @rashidsubhani9908 2 года назад +31

    If anyone want to start a career in programming, this course is really helpful. I really appreciate your efforts Harry

    • @theescanor8985
      @theescanor8985 2 года назад +1

      I m really looking forward to go with programming... Just worried k would i be able to remember all the codes.. 😅😅

    • @SpectreKritical
      @SpectreKritical 2 года назад +1

      @@theescanor8985 it is easy. You can do it

    • @theescanor8985
      @theescanor8985 2 года назад

      @@SpectreKritical thnk u bhai

    • @Lohith_lollu
      @Lohith_lollu 2 года назад

      Is this enough to get any entry level coding job??

    • @trusfratedbunny2215
      @trusfratedbunny2215 2 года назад

      Can any graduate can do programming job after just learning skills & not degree?!

  • @preranaramteke5908
    @preranaramteke5908 3 года назад +45

    Finally! I completed the course i just don't believe that i learn all core python by this amazing & enjoying way! thanks yrr... for this amazing video!

    • @rirudro88
      @rirudro88 3 года назад

      I am learning.

    • @pairfour1273
      @pairfour1273 3 года назад +1

      Kya iske notes hoge kisi ke pass ho toh mujhe send kar do sis

    • @RashmiKumari-hn7zr
      @RashmiKumari-hn7zr 3 года назад +1

      chapter-7 , 9th ans anyone know's? if you know then please write It in the comment box

    • @jayeshnamdev129
      @jayeshnamdev129 3 года назад

      I also want scanned notes, if you have kindly share with us PLS

    • @prmaddy
      @prmaddy 3 года назад

      Ha yrr kisi ke pass ho
      I also need notes

  • @faridajamal1135
    @faridajamal1135 2 месяца назад +2

    3:19:15
    a=(7,0,8,0,0,9)
    zero=a.count(0)
    print(zero)

  • @abhijitpramanick3319
    @abhijitpramanick3319 2 года назад +22

    5:05:18
    str = input("Enter your username : ")
    if(len(str)

  • @Deepakkumar-km8dj
    @Deepakkumar-km8dj 2 года назад +20

    6:06:48
    num=int(input("Enter the number
    "))
    for table in range(1,11):
    i=11-table
    print(f"{num}X{i}={num*i}")

    • @Hanuman98337
      @Hanuman98337 2 года назад

      python ch 1 intro = ruclips.net/video/Fj4uf3qo3Ew/видео.html

    • @rohabamir7509
      @rohabamir7509 Год назад

      Best and simple approach is to change in the range function as it allows to iterate in reverse order as well
      Just like all the same code just change in the range function like :
      Num : int ( input(“Enter a number”)
      For i in range (10,0,-1 )
      Print(f”{num}X{i}={num*i}”)
      Simple!

  • @blackdevil1403
    @blackdevil1403 3 года назад +23

    5:23:18
    i = 0
    while i < 5:
    i = i + 1
    print("Harry is legend")
    output:
    Harry is legend
    Harry is legend
    Harry is legend
    Harry is legend
    Harry is legend

    • @BroloCraft
      @BroloCraft 3 года назад

      It will only give output 4 times not five times

  • @manishadas3398
    @manishadas3398 3 года назад +28

    3:19:18 Write a program to count the number of zeros in the following tuple:
    b = (7,0,8,0,0,9)
    print(b.count(0))

    • @vikash_singh45
      @vikash_singh45 3 года назад +1

      Apne practice 2 ka last quest kar liya to plz send kardo ❓

    • @oreki_hotauro
      @oreki_hotauro 3 года назад

      @@vikash_singh45 a = input("Enter a number")
      a = int(a)
      print("The square of a is", a*a)

    • @vikash_singh45
      @vikash_singh45 3 года назад

      @@oreki_hotauro thanks dear ♥️

    • @oreki_hotauro
      @oreki_hotauro 3 года назад

      @@vikash_singh45 👍👍

  • @Timeless_Eve
    @Timeless_Eve 3 года назад +478

    Can we appreciate that how much hard work did he put in this video 🙏🙏🎉

    • @anushkachetia6234
      @anushkachetia6234 3 года назад +8

      Army!! Pretty sure you are learning programming like me so that we can earn money and run to korea asap and see our boys! 😭✨💜💜💜

    • @ripdude3692
      @ripdude3692 3 года назад +9

      @@anushkachetia6234 wtf 😂😂

    • @Ajitkm8
      @Ajitkm8 3 года назад +1

      @@anushkachetia6234 hlo hlp me

    • @shubhamvishwakarma8309
      @shubhamvishwakarma8309 3 года назад +1

      Yes

    • @basirsaboor2367
      @basirsaboor2367 3 года назад +1

      39:35 p sir na play. mp3 ki file kis tarah dowlpad ki kia koi guide kar sakta ha plz

  • @x7falcon689
    @x7falcon689 4 года назад +47

    Why there is a dislike button on the video ?
    This video only deserves LIKES .
    Code with Harry ZINDABAAD !

    • @chinmoykumar1878
      @chinmoykumar1878 4 года назад +3

      ZINDABAD

    • @amitbhardwaj2532
      @amitbhardwaj2532 4 года назад +1

      ZINDABAD

    • @aw44r
      @aw44r 4 года назад +2

      Dislikes are from Harry's Haters

    • @fastcar544
      @fastcar544 4 года назад +4

      Dislikes are from whithatjr employees

    • @x7falcon689
      @x7falcon689 4 года назад +2

      @@fastcar544
      True !
      I hate WhiteHat Jr.

  • @safalswayam6927
    @safalswayam6927 Месяц назад

    4:47:22 Else is optional
    a = 46
    if (a == 5):
    print("Yes")
    elif (a>40):
    print("no and Yes")
    it will print "no and yes"

  • @sudarshangapat9507
    @sudarshangapat9507 3 года назад +49

    I was revising python concepts after months and you made it so simple yet understandable !!! Thank you so much Harry Bhai

  • @PrayasArt
    @PrayasArt 4 года назад +140

    People used to take thousands for such course and this guy is giving for free. Thanks Code with Harry 😊😊

    • @amritanarang7305
      @amritanarang7305 4 года назад +4

      I have paid also. Now i know where can i get free stuff:)

    • @shubamgarg2280
      @shubamgarg2280 3 года назад +3

      @umair khan Yes ,t is useful to learn basics and have good scope in future.

    • @samshorts4834
      @samshorts4834 3 года назад +2

      Bro he is not taking money from You but He is taking money from RUclips

    • @viddy1983
      @viddy1983 2 года назад +6

      @@samshorts4834 But that's totally his credit. if he wasn't any good, his views and subscribers wouldn't have been this much.

    • @ultragayan5496
      @ultragayan5496 2 года назад +1

      Bhai ye python 2.7 ha ya 3.0

  • @Educationalscript
    @Educationalscript Год назад +27

    5:05:30
    username = input ("Enter username:
    ")
    character = len (username)
    if (character

  • @pallavimishra4202
    @pallavimishra4202 3 месяца назад +1

    6:07:23
    #print table in reverse order:
    tu=int(input('enter a number'))
    for i in range(10,0,-1):
    mul=tu*i
    print(f'{tu} X {i}={tu*i}')

  • @funwithfafzu6226
    @funwithfafzu6226 2 года назад +36

    05:13:24 Chapter 6 Practice set Question no. 7 :-
    post = input("Enter your post
    ")
    checkwith = "Harry"
    if checkwith.upper() in post.upper():
    print("The above post is talking about Harry")
    else:
    print("The above post is not talking about Harry")

    • @souravdhawa3621
      @souravdhawa3621 2 года назад

      Thank broo

    • @funwithfafzu6226
      @funwithfafzu6226 2 года назад

      Welcome

    • @pankaj.padekar
      @pankaj.padekar 2 года назад +3

      bro ye advanced level ka code kiya hai tume chapter 6 th tak ye harry sir ne upper lower jaise kuch sikhaya bhi nahi , nahi questionn koi alag se post input krne ko bola hai
      simple coding hai ek post banao aur if else use kro baki kuch nahi bola sir ne

    • @funwithfafzu6226
      @funwithfafzu6226 2 года назад +2

      @@pankaj.padekar Checkwitht is a variable not a statement
      Here is an example of code:-
      post = input("Enter your post
      ")
      name = "Harry"
      if name.upper() in post.upper():
      print("The above post is talking about Harry")
      else:
      print("The above post is not talking about Harry")
      ----------> You can write anything as a variable if you are confusing in checkwith (variable)

    • @pankaj.padekar
      @pankaj.padekar 2 года назад

      @@funwithfafzu6226 got it thankd

  • @namratakale507
    @namratakale507 3 года назад +18

    5:05:09
    username = input("Enter your Username
    ")
    if(len(username)< 10):
    print("yes your username contains less than 10 characters")
    else:
    print("no your username contains 10 or more than 10 characters")

  • @shahidashraf9045
    @shahidashraf9045 4 месяца назад +1

    6:52:00
    Table assignment-----
    def table(Num):
    return(f"{Num}*{i}={Num*i}")
    for i in range(1,11):
    num = 5
    t = table(num)
    print("The required Multiplication table is " + str(t))

  • @shreshthijain6731
    @shreshthijain6731 2 года назад +32

    Congratulations for written 1st python program to myself
    1:36:54 I like this question infact after revising chapter I did complete 2nd assignment myself and i am proud of it 💜💜❤️❤️

    • @aniketsarode169
      @aniketsarode169 2 года назад +2

      Congratulations to myself for writing my 1st program in Python*

    • @Himanshu-jf1oc
      @Himanshu-jf1oc 2 года назад +1

      @@aniketsarode169 me too

  • @ayushs7625
    @ayushs7625 2 года назад +32

    5:51:25
    chapter 7 practice set question no. 3.
    Write a program to print the multiplication table of a given number using while loop.
    num=int(input("enter any number
    "))
    i=1
    while i

    • @gelectiusdroid4147
      @gelectiusdroid4147 2 года назад

      Bhai dil to diya nhi Harry ne

    • @ryomengordon
      @ryomengordon 2 года назад

      @@gelectiusdroid4147 Bhai 73000 lok me se upko dill kaise dega😂😂😂

    • @gelectiusdroid4147
      @gelectiusdroid4147 2 года назад +1

      @@ryomengordon mujhe dil chahiye bhi nhi.

  • @prateeksao3840
    @prateeksao3840 Год назад +46

    6:52:06 multiplication table practice set 8 Q8-->
    def multiplicationTable(n):
    for i in range(1,11):
    print(f"{n}X{i}={n*i}")
    n = int(input("Enter Number Here: "))
    multiplicationTable(n)

    • @pablochocobar4297
      @pablochocobar4297 Год назад

      after n*10 it is returning a 'None", any fix?

    • @prateeksao3840
      @prateeksao3840 Год назад +1

      @@pablochocobar4297 show your complete code plz

    • @pablochocobar4297
      @pablochocobar4297 Год назад +2

      @@prateeksao3840
      def mul(n):
      for i in range(1,11):
      print(f"{n}X{i}={n*i}")
      num = int(input("Enter the number:"))
      print(mul(num))
      Output(For example of 2):
      2X1=2
      .
      .
      .
      .
      .
      .
      2X10=20
      𝗡𝗼𝗻𝗲
      I'm getting none at the end of the output, that's what my doubt is

    • @makeoutvibes56
      @makeoutvibes56 Год назад

      ruclips.net/video/a8QLa1WRt7g/видео.html

    • @kritimishra6715
      @kritimishra6715 Год назад

      @@pablochocobar4297 same error I am also getting

  • @shreyanshkushwah6847
    @shreyanshkushwah6847 3 года назад +21

    1:37:40 practice sheet is helpful
    Q.7 - a = Input ( " Enter a number: " )
    a = int(a)
    b = a * a
    print (b)

    • @beastathouse
      @beastathouse 3 года назад +2

      I did same 😅

    • @beastathouse
      @beastathouse 3 года назад +1

      @Unknown Know ye bhi theek hai

    • @Rohan_7902
      @Rohan_7902 3 года назад +1

      Nice

    • @Rohan_7902
      @Rohan_7902 3 года назад +1

      Are you learn all basic python

    • @dutchvenderlinde4222
      @dutchvenderlinde4222 3 года назад +1

      Jada BDE number ka square nhi aarha h like 25 ,can anyone explain y??

  • @warisafghan4211
    @warisafghan4211 3 года назад +235

    In this difficult situation where everyone is afraid but I still hope for a brighter tomorrow so that's why I watch your wonderful lessons form Afghanistan 🙏
    Thank you sir ❤️ for giving me hope and inspirations

    • @crazyvedio6601
      @crazyvedio6601 3 года назад +11

      Oh I pray for you and your country 🤞🏻

    • @rajendraaryal3045
      @rajendraaryal3045 3 года назад +7

      Me to I will pray for you and your country to be free from taliban

    • @aadityasingh2007
      @aadityasingh2007 3 года назад +6

      Yaa I also pray for your country salute to Ahmad Massood

    • @monkstrike
      @monkstrike 3 года назад +4

      my prayer is with u, may Allah bless u and ur country with bright future

    • @divyanshusahu6111
      @divyanshusahu6111 3 года назад +9

      Taliban MC

  • @donteven4673
    @donteven4673 3 года назад +56

    You are the best coding teacher in YT, and thats a fact

    • @bluzane
      @bluzane 3 года назад +1

      I got Rickrolled by the simplicity of his instruction

    • @donteven4673
      @donteven4673 3 года назад +1

      @@bluzane You even got roclroll by my pfp

    • @mohak.youtube
      @mohak.youtube 3 года назад

      @@donteven4673 stfu

    • @donteven4673
      @donteven4673 3 года назад +1

      @@mohak.youtube why?

    • @hinamankani5319
      @hinamankani5319 3 года назад

      @@donteven4673 stfu

  • @ajeetgiri4343
    @ajeetgiri4343 3 месяца назад +1

    6:45:30
    def func_rec(n):
    if n ==1 or n==0:
    return 1
    return n + func_rec(n-1)
    s = func_rec(int(input("Enter your num
    ")))
    print(s)
    😊

  • @asthaverma5495
    @asthaverma5495 4 года назад +27

    5:13:32
    str = input("Enter a string")
    str = str.lower()
    if 'harry' in str :
    print("harry is present :)")
    else :
    print("harry is not present !")

    • @yogeshjoshi3614
      @yogeshjoshi3614 3 года назад +1

      Thanks fr this comment
      I was looking for this solution

    • @prakhargupta5410
      @prakhargupta5410 3 года назад +1

      Pretty great dude you actually made this far.....I am still at 1:59

    • @AyushKumar-li3nw
      @AyushKumar-li3nw 3 года назад +1

      Sir ne lower() to discuss hi nhi kiya (timestamp!?)

    • @AyushKumar-li3nw
      @AyushKumar-li3nw 3 года назад +1

      Thanks for the solution

    • @vaishali404
      @vaishali404 2 года назад +1

      Nice....

  • @srijannagrath96
    @srijannagrath96 Год назад +38

    Being an engineer I was really scared about the programming. Also, after the java, python was the only language which looks easy. Yes, I have written my first program by watching your video. Thanks for the motivation and making such creative content. 😊❤

    • @fidenahmed2905
      @fidenahmed2905 Год назад

      Please help m abhi 12 m hu mujhe basic computer and html k bare. M kuch na pata kya m start kr sakta hu

    • @amruthab3786
      @amruthab3786 Год назад

      @@fidenahmed2905 phele basic computer seekhlo uske html karna

  • @nikhilmajukar2795
    @nikhilmajukar2795 3 года назад +143

    Congratulations to everyone who completed the course

    • @urvashibarche3836
      @urvashibarche3836 3 года назад +2

      Heyyy... you to ✨✌️

    • @maheshpanday5388
      @maheshpanday5388 3 года назад +11

      This course is endless😥😌😌

    • @srijalacharya3004
      @srijalacharya3004 3 года назад +8

      Slowly and stedy wins the race , I am reading in that way.

    • @ananttiwari1053
      @ananttiwari1053 3 года назад +5

      khud complete keyeho ki bas congratulate karteho!

    • @nitishmedi1711
      @nitishmedi1711 3 года назад +2

      @@maheshpanday5388 normal offline coaching take 4 to 5 weeks easily paid

  • @somindwithgames9827
    @somindwithgames9827 3 месяца назад +2

    6:45:35
    # sum(n) = (n * sum(n))/2 # real formula
    # sum(n) = sum(n-1) + n
    def fun_rec(n):
    if n == 1 or n == 0:
    return 1
    return n + fun_rec(n-1)
    a = fun_rec(3)
    print(a)

  • @rajasarkar8173
    @rajasarkar8173 3 года назад +148

    this dude just gave away a 12hr course for free
    respect+++

  • @samihammas
    @samihammas 4 года назад +69

    Love from Afghanistan ❤🇦🇫
    There are academic problems in Afghanistan🇦🇫, especially in the computer department, and I am a university student and I learn 1 percent from the university and 99 percent from you. And by learning your lessons, I want to work in good global companies in the future😊
    Thanks my Indian teacher🇦🇫🇮🇳❤

  • @sauravsilwal3132
    @sauravsilwal3132 Год назад +33

    1:38:55 enjoying the course a lot and learning slowly but steadily. I feel happy that once I complete this course I will be able to use python in my field of interest, i.e. engineering