Functions in Python | Python Tutorial in Hindi 10

Поділитися
Вставка
  • Опубліковано 2 лис 2024

КОМЕНТАРІ • 64

  • @anitasolanki-wp7pl
    @anitasolanki-wp7pl Місяць тому +5

    Way of explanation is very easy this series is best for beginners 👍

  • @akashshelke1475
    @akashshelke1475 Місяць тому +6

    thanks rishabh bhai for this video pls keep it up as i am studying from your channel to get ajob pls help by uploading all the details for becoimg a product analyst

  • @003isha
    @003isha 6 днів тому +1

    Thank you so much Sr, apke jaise koi explain nhi kr sakta ...saari tension hi khatam or itna easy or one to one example se samjhya with all points tits and tats .jo koi nhi samjhata .. Thank you so much please libraries ka bhi videos banaye

  • @Reactionface0
    @Reactionface0 19 днів тому +1

    I love the way are you teaching, the concept was totally clear U make me understand in very easy way Tq @rishaabh bhaiya

  • @rahulsingh-mm3tm
    @rahulsingh-mm3tm Місяць тому +1

    Hi Rishabh, I am 45 years old ,non IT precession mid management working in MNC, i tried to learn Python in past 5 years but had to left, I lost interest as i was not be able to understand these concepts . First time i am enjoying learning Python as able to understand all the concepts you explain so well. I decided to complete this series , lets see............. your way of explanations are best as compared to many paid courses i opted. Keep teaching , you don't even having idea how you are transformation people professional journey.

  • @Ranjit-K9
    @Ranjit-K9 Місяць тому +4

    Brother make one project on time series analysis and hypothesis testing i have watch many videos but i didn't get any clear concept you teaching style is fabulous i know only you can clear my doubt on this topic if you can do this it'll very help full for me to crack the interview

  • @bumblebees-lu9qt
    @bumblebees-lu9qt 6 днів тому +1

    i will just say one thing you"re very underrated

  • @Shivanshbhandari_001
    @Shivanshbhandari_001 Місяць тому +1

    nice lec keep continue sir god bless u

  • @abhivlogs1570
    @abhivlogs1570 Місяць тому

    Keep this series continue 😊

  • @sifatnowshin8291
    @sifatnowshin8291 Місяць тому +1

    Thanks, brother. I've been waiting a long time for your Python lesson.

  • @CheerfulMountainLandscap-gk8pn
    @CheerfulMountainLandscap-gk8pn Місяць тому

    Thank you so much sir for updating vedio on regulR basis.
    Very nice way of teaching

  • @aish000
    @aish000 Місяць тому

    Happy teachers day! Thank you for all the courses and projects. You are amazing! 👏

  • @Dwn.P-c
    @Dwn.P-c Місяць тому

    Always good to see you sir , sir can you made a videos on beginners course list only who are just enter in The Computer field or you can say IT sector and Data science by the way i want from you that please made a videos on R prog. , STATA , Data Analysis using SPSS as these were part of M.A economics if you would made or just tell me the roadmap it will be very helpful sir

  • @SURAJ-512
    @SURAJ-512 Місяць тому +2

    Mast bto i will also lern python ❤❤❤❤

  • @aadarshparikh9990
    @aadarshparikh9990 Місяць тому

    Suggest some books to learn data analysis from basics to advance

  • @Erdeepak510
    @Erdeepak510 Місяць тому

    Rishabh bhai, kitne chapters aur bache hai.. kaafi intersting hai ye..
    Aur ye specially kinke liye hai.
    For all or only for data analyst/DS/DE etc

  • @aadilmajeed7506
    @aadilmajeed7506 Місяць тому +1

    sir can you make videos daily
    we have to wait for your videos and thanks ❤❤❤

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  Місяць тому

      Glad you liked ✅️ I'm trying to upload videos asap

    • @aadilmajeed7506
      @aadilmajeed7506 Місяць тому

      @@RishabhMishraOfficial thank you for replying sir
      you can understand sir i have to wait for the lectures to come

  • @CrazyBlazeIndia
    @CrazyBlazeIndia Місяць тому

    Please upload One topic daily

  • @pritpatel8
    @pritpatel8 Місяць тому

    Bro make video on library that requires for data analyst like . I know that you know better than me so please make video on library that most requir for data analyst

  • @MuseebAlam-l3h
    @MuseebAlam-l3h 8 днів тому

    Sir tuples tak itni python deta analysis ke liye sufficient he jitni apne krayi ya or bhi karni hogi

  • @everythingshort3269
    @everythingshort3269 Місяць тому +1

    This series will consist total how many videos?

  • @japjeetsinghanand
    @japjeetsinghanand Місяць тому +1

    Sir loops ka chapter kb introduce karoge aap?

  • @_._SAM_._._
    @_._SAM_._._ 26 днів тому +1

    #Defining functions first
    def add(a,b):
    result = a + b
    return (print(result,type(result)))
    def minus(a,b):
    result = a-b
    return (print(result, type(result)))
    def multi(a,b):
    result = a*b
    return (print(result, type(result)))
    def divi(a,b):
    result = a/b
    return (print(result, type(result)))
    def avg(a,b):
    result = (a+b)/2
    return (print(result, type(result)))
    #Using function to write calculator code:
    a = int(input('enter your first no. here: '))
    b = int(input('enter your second no. here: '))
    opp = int(input('choose which opperation:
    (1=add, 2=subtract, 3=multiply,
    4=divide, 5=average.)'))
    if opp==1:
    print(add(a,b))
    elif opp==2:
    print(minus(a,b))
    elif opp==3:
    print(multi(a,b))
    elif opp==4:
    print(divi(a,b))
    else:
    print(avg(a,b))
    # this calci only does operation on 2 digits.

  • @Reactionface0
    @Reactionface0 19 днів тому +1

    pass statement is my fav🤣🤣

  • @xtravengersgaming
    @xtravengersgaming Місяць тому

    kya yeh correct hai?
    def calculator(a,b):
    addition = a+b
    sub = a-b
    div= a/b
    muliply= a*b
    avg = (a+b)/2
    return addition,sub,div,muliply,avg

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  Місяць тому +1

      Aree bhai bhai bhai.. yeh kya hai. Aise nahi proper step by step likho, take user input n print the results in output

    • @xtravengersgaming
      @xtravengersgaming Місяць тому

      @@RishabhMishraOfficial hahahahha ha sir!! yeh wrong hai...thank you for reply. mene enw video par just abhi new program comment kiya hai.
      thoda f string and all use kar k.
      thanks

  • @_._SAM_._._
    @_._SAM_._._ 26 днів тому

    def ad2(a, b):
    result = a + b
    return (print(result, type(result)))
    input:- ad2(55,66)
    output:- 121
    how about just using print inside return
    i did this and when i hit run it printed the sum and the data type(int)
    would there be a problem with this type of code?

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  25 днів тому +1

      It should work, but the problem is the data type of output is none, so you can't use it in future calculations. Already covered this point in video

  • @PravinKumar-io5lu
    @PravinKumar-io5lu Місяць тому

    Recursion is important for data analysts ?

  • @xtravengersgaming
    @xtravengersgaming Місяць тому

    Normal: Bulati hai MAGAR jane ka nahi ❌
    Function be like: Bulati hai ....toh...jane ka ✅

  • @chitranshchaturvedi2333
    @chitranshchaturvedi2333 Місяць тому

    Bhaiya placements chal rhi h and data analytics ki companies aa rhi hain
    Python ki ye series kitne time m complete kr doge aap?? Because you take many days gap between two videos.

    • @SushilKumar-z4o1m
      @SushilKumar-z4o1m Місяць тому +1

      Dear Chitransh,
      Rishab is working professional and he makes videos by engaging his time to provide free videos to viewer's.
      He need to adjust time to make videos by editing, which takes a lot of time to make this happens.
      So keep patients & learn.
      If you are in hurry you can also refer any other video which is already present on you tube.
      Sorry, @Rishab Mishra if i have done any mistake.

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  Місяць тому +2

      Yess I'm working on it, will try to share videos asap, in 2 weeks this series will be completed

    • @chitranshchaturvedi2333
      @chitranshchaturvedi2333 Місяць тому

      @@RishabhMishraOfficial okay bhaiya

  • @PurviVarshney-e9s
    @PurviVarshney-e9s Місяць тому

    Sir pls help me Mere system ma python install ke time ek error aa rhe h python is not recognised pls isse kaise solve kre give me any suggestions

  • @ManishSharma-fj3wn
    @ManishSharma-fj3wn Місяць тому +1

    14:32
    Bhaiya yaha par kaisa pata chalega ki variable kis data type ka hai parameter mai
    Ans is 37:50
    a = int(input("Enter the first number"))
    b = int(input("Enter the second number"))
    print(f"Addition of a+b is {a+b}")
    print(f"Subtraction of a-b is {a-b}")
    print(f"Division of a/b is {a/b}")
    print(f"Multiplication of a*b is {a*b}")
    print(f"Average of (a+b)/2 is {(a+b)/2}")

    • @RishabhMishraOfficial
      @RishabhMishraOfficial  Місяць тому +1

      That we can understand by prompt- enter a number. That means parameter is a numeric type. And if someone enters any other type value it will be considered as invalid input

    • @ManishSharma-fj3wn
      @ManishSharma-fj3wn Місяць тому

      @@RishabhMishraOfficial Thank you so much bhaiya