P_08 Variables in Python | Python Tutorials for Beginners

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

Комментарии • 179

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

    Hello mam besically i am a mechanical engineering student. I don't know about basic knowledge of software. but when I was seen your videos i have same confidence I'm also learn python thank you so much mam ❤❤🙏🙏

  • @priya-we2hg
    @priya-we2hg 2 года назад +16

    "शिक्षक और सड़क दोनों एक जैसे होते हैं..
    खुद जहाँ हैं वहीं पर रहते हैं
    मगर दूसरों को उनकी मंज़िल तक पहुँचा ही देते हैं। " 🙏🙏🙏

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

    The best programming teacher I have seen so far. I am really enjoying your lectures. Thanks

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

    I didn't like to watch other programming but now I like to learn python in your channel and a I didn't know to understand English because my mother tongue is Telugu and Tamil so I didn't understand but I understand your English language...

  • @ashapatil9527
    @ashapatil9527 Год назад +8

    name = input("What is your name? ")
    a = str(len(name))
    print("number of letters in name is " + a)

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

      can u pls tell me , how does the 'str' works

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

      @@fstgamer685 str converts anything into string

    • @guga8578
      @guga8578 11 месяцев назад +1

      @@fstgamer685 str means string
      and it takes output of name variable and counts it in len(name) and then it shows the length of the value given in name variable in 'a'

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

      @@ashapatil9527 name= len(input ("Name")) \\output:Nik
      print(name) \\output:3

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

    Coding se dur dur tak mera koi rista nata nhi hai 😁😁lekin fir bhi subscribe kar rkha hai...or daily dekhta hun ... ❤️❤️

  • @arunadevi703
    @arunadevi703 2 года назад +15

    very crystal clear explanation...Great lecture

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

    Hi Jenny i am from Sindh and i am much more impressed from your tutorials. Kindly start classes on machine learning in python please.

  • @nikithaa.s683
    @nikithaa.s683 Год назад +7

    Instead of using input function if we write 1 in double quotes it will be considered as a string and it will be concatenated

    • @aeri2300
      @aeri2300 7 месяцев назад

      Yes correct

  • @StarANBC
    @StarANBC 29 дней назад

    a=input("Learning ethical Hacking from?")
    print(a)
    length=len(a)
    b=input("From witch platform?")
    print(a+b)
    print(len(a+b))

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

    name=input("What is your name?")
    leng=len(name)
    print(f"Your name has {leng} character")

  • @LAWRENCEXAVIERFCS
    @LAWRENCEXAVIERFCS Год назад +6

    In order to find the length,
    name=input("What is your name?")
    print(len(name)

  • @sian4430
    @sian4430 2 года назад +10

    Please continue with the python lectures 🙏 Thank you

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

    hii jenny i saw your video after two years but its helpfull for beginners . thanks alot .

  • @trishitaghosh1932
    @trishitaghosh1932 4 месяца назад

    print ("String Mnupulation Excercise,
    "+"String Concatination done with \"+\" sign
    "+'e.g print("hello"+"Jenny")
    '+"New lines can be created with backslash and n")

  • @G.O.A.T._.
    @G.O.A.T._. 7 месяцев назад +2

    Nice lecture!! learnt a new thing❤ 14:34

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

    Hello, I just wanted to comment. I was taking your example and manipulating it a bit by trying to sum or total the variables, I used this method: num1 = input('Give me a number?)
    num2 = input('Give me another number?) sum = num1 + num2 print('They equal', sum). But all I could get the compiler to do was concatinate the two user defined numbers, I couldn't get them to add. So, 5 + 5 would always output 55 not 10! So, after some effort I discovered that if I declared num1 and num2 as an interger then they would sum. Example: num1 = int(input('Give me a number:')) num2 = int(input('Give me another number:')) sum = num1 + num2 print('They equal', sum) . I thought you didn't have to declare teh variable as a integer or string or whatever? What was I doing wrong? Thanks for your reply

    • @TheTruth-vs2bw
      @TheTruth-vs2bw 2 года назад

      num1 = input("Give me a number? ")
      num2 = input("Give me another number? ")
      sum = num1 + num2
      print("They equal", sum)

    • @AHMED-JMINE
      @AHMED-JMINE Год назад +4

      @@TheTruth-vs2bw this program will not give the sum of number I mean if u enter num1 10 and num2 20 then this program will just concetinate those two value rather than adding them so the final answer would like this 1020 .... And we were assuming 30 so if u want this(30), you have to convert str data type into int data becouse by default the input function always return a str data

    • @subhajitroy9834
      @subhajitroy9834 10 месяцев назад

      num1 = int(input("Give me a number? "))
      num2 = int(input("Give me another number? "))
      sum = num1 + num2
      print("They equal", sum)
      use this code

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

    I am biotechnology engineer but after watching your videos programing languages become more easy for me😭❤️

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

    Can't wait for your lecture on objects and values. Well-done

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

    Good lecture and good quality of notes

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

    Give exercises after the lecture like before one video I solve that also
    Hey Poorna, How are you
    This is the output.

  • @hunashyal001
    @hunashyal001 6 месяцев назад

    Awesome super teaching methods for beginners it's best way to understand here

  • @StarANBC
    @StarANBC 29 дней назад

    Enjoying Learning from you...

  • @Kaavyaav-g9g
    @Kaavyaav-g9g Год назад

    You are a saviour

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

    Python simplified. Thank you ma'am

  • @sci-kings
    @sci-kings 2 года назад +3

    Thanks ma'am for a great lecture.

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

    Class studied successfully!

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

    Thanks you teacher jenny ❤❤❤🎉

  • @careerwhere4508
    @careerwhere4508 6 месяцев назад

    print("Hey "+input("what is your name?")+" How are you?")

  • @ThomasBarron-y1p
    @ThomasBarron-y1p 2 месяца назад

    great educational video

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

    You mentioned teh answer, as I discoverd by watching again your lecture. Default to strin not number.. So to sum them I had to define tehm as integers...hummm

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

    Love you mam❤❤

  • @LingeshhvarenKA
    @LingeshhvarenKA 9 месяцев назад

    print("Length of your name is",len(input("Enter your name ? ")))
    or
    name=input("Enter your name ? ")
    print("Length of your name is",len(name))

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

    ma'am, you are looking very nice as well as lectures.

  • @mathswithguddu
    @mathswithguddu 10 месяцев назад

    Thank you madam for such good videos

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

    print(len(input("what's your name?"))

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

    Super explanation ❤

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

    Name=input('whats your name?')
    len=len(Name)
    print(len)
    print(Name+"," 'How are you?')
    Day=input('What is the day')
    print (Name+','+ 'Have a great,'+Day)

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

    Jenny good teaching

  • @ManishaLohani-ve8rl
    @ManishaLohani-ve8rl 17 дней назад

    name="Manisha"
    print(len(name))
    output
    7

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

    Love u mam , you really work hard

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

    Thanks for your lectures

  • @suyogpardeshi5843
    @suyogpardeshi5843 8 месяцев назад

    name=input("What is your name:?")
    print("Character count is:"+str(len(name)))

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

    This also possible
    name=input("What is your name
    ")
    print("Length of your name is",len(name))

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

    Awesome, Thank you for the free knowledge :)

  • @Adi_venky_001
    @Adi_venky_001 5 месяцев назад +1

    Easiest way name="jenny"
    Print(len(name))
    Answer will be 5

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

    Good explanation 👍

  • @a.kaviya7998
    @a.kaviya7998 Год назад

    Thank you for your wonderful lecture .it's very useful for me

  • @sauravmishra9820
    @sauravmishra9820 4 месяца назад

    great lectures mam

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

    Please upload videos regularly
    So we can learn easily

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

    Worked smoothly, tysm

  • @lilliana_es
    @lilliana_es 9 месяцев назад

    God bless you madam

  • @AnshumanKumar1
    @AnshumanKumar1 Год назад +3

    Any school level student leaning this because i am in school and still learning this❤😂

  • @AbdurRahman-ck7ue
    @AbdurRahman-ck7ue Год назад

    Nice lesson

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

    Thank You So Much

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

    a=input("what is your name")
    print(len(a))

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

    Very useful lectures, thanks a lot ma'am😇

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

    Please upload many vedios on python(as fast as possible) ,egarly waiting Mam

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

    mam pls complete c++course soon
    it's a very foundation course in every collage

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

    Name= input (" What is your name? "(
    Length= len( name)
    Print( length)

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

    name=input("What is your name?")
    print(name)
    print(len(name))

  • @Jaswin4627
    @Jaswin4627 4 месяца назад

    Thank you mam

  • @Mrecwcse_gSeminar
    @Mrecwcse_gSeminar 9 месяцев назад

    U are superb mam

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

    hello jenny, teaching-level speechless ♥ soooo nice madam

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

    Super mam nice explained

  • @cs-rohitsahu4943
    @cs-rohitsahu4943 2 года назад

    Thank you ma'am

  • @AHMED-JMINE
    @AHMED-JMINE Год назад

    #asking user for his her name
    print("enter your name?")
    #storing the name in a variable called name
    name = input()
    #printing the name
    print(name)
    #printing the length of the variable(name)
    print(len(name))

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

    Super 🎉🎉🎉

  • @Divya-indla254
    @Divya-indla254 Год назад

    Name=input ("what is your name?")
    Print(len(Name))

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

    name=input("what is your name?")
    print(len(name))

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

    Iam tenth class student I came to see you❤❤

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

    Thank you for your efforts mam 🙂

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

    Tq very much mam

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

    Mam is it possible for you to teach tableau course too!!

  • @OMPRAKASH-uz8jw
    @OMPRAKASH-uz8jw 2 года назад

    waiting for next video on python

  • @JyoshnaMadhavaneni-x7z
    @JyoshnaMadhavaneni-x7z 3 месяца назад

    Program
    name=Input("what is your name")
    S=len(name)
    Print(s)

  • @Akalya-o3o
    @Akalya-o3o Год назад

    name= input("what is your name?")
    print(len(name))
    like this also we can give know mam

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

    Ma'am can you suggest any book for python?? Please 🙏🏻🙏🏻

  • @Shivangpandey-rc1mx
    @Shivangpandey-rc1mx Год назад +1

    name =input("what is your name ")
    print(len(name))
    can we do like this mam to decrease no of lines ??

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

    Name=input(what's ur name)
    Print (name)
    Print(len(name))
    O/p
    what's ur name Jam
    Jam
    123

  • @grigoldvali4124
    @grigoldvali4124 7 месяцев назад

    jenny i love youuuuu, from Georgiaaaa

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

    I am sorry yaar, but you are irresistibly cute😐😅
    Thanks for all the efforts btw, ur channel's great.

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

    Madam , could you explain about socket programming using c lang

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

    Mam please explain output function in python

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

    Mam iam a commerce student.
    Mujhe kuch samajh toh nahi aaya but dekh acha lagga

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

    {
    name = input("what is your name?")
    print(name)
    print(len(name))
    }
    Is this correct code to print length of variable?

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

      Yup it is correct, and also there is no need to use curly brackets

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

    Mam, Could you please teach AWS also it would very helpful to us

  • @codingexpedition
    @codingexpedition 20 дней назад

    Thanks 1133 subscriber

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

    Mam do all concepts on python
    ASAP plzzz

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

    hi Jenny why you choose to do coding pychamp instead of anaconda ? I found it little difficult for using than anaconda.

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

    Mam isse python complete ho jaegi na poori playlist se

  • @kouselyab.g5574
    @kouselyab.g5574 2 года назад +1

    One doubt MAM.....As we have seen that Concatenation of the int and str will give an Error.....
    But if we have given the statement as : print("Length="+"6")
    then the
    O/P : Length=6
    is crt MAM.....
    So my doubt is what can we have as Conclusion that whether Concatenation of int & str is error or not ......?!
    MAM...✨

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

      You declared 6 as a string when you wrote + "6"
      It changed it's type to string.
      It would have sent you an error If you wrote it like
      print ("length = " + 6)

    • @kouselyab.g5574
      @kouselyab.g5574 2 года назад

      Thanks👍✨

  • @ranjann2609
    @ranjann2609 8 месяцев назад

    name = input ("what is your name ")
    b = ("ranjan")
    print("name + b")
    OUTPUT :
    what is your name LNKJ
    name + b
    the name which i have given it is not printing

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

    Hello,
    mam lecturer # 8 after my great efforts I did not understand, please repeat it again so I can understand. Thanks

  • @mirajacademy4265
    @mirajacademy4265 4 месяца назад

    Madam,
    I am a student of computer Technology. How to learn software?

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

    Mam can you do tutorial on SQL and pl/sql

  • @DeepakSharma-mn2ss
    @DeepakSharma-mn2ss 11 месяцев назад

    Hi Ma'am.... Is there any class for python in Jupyter note book

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

    Mam why don’t we use input function like :print(“hi” + input(“enter name: “) + “ “ + “,” +”you r good looking”)

  • @SRUthi_33
    @SRUthi_33 8 месяцев назад

    Mam, while executing the variable u u didn't u included " " in the parentheses?😮

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

    Mam c++ course is completed fully or still videos are there to upload?