P_08 Variables in Python | Python Tutorials for Beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ธ.ค. 2024

ความคิดเห็น • 182

  • @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

  • @arunadevi703
    @arunadevi703 2 ปีที่แล้ว +15

    very crystal clear explanation...Great lecture

  • @Holy_kind_07
    @Holy_kind_07 5 หลายเดือนก่อน +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...

  • @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 8 หลายเดือนก่อน

      Yes correct

  • @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 ปีที่แล้ว +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

  • @G.O.A.T._.
    @G.O.A.T._. 8 หลายเดือนก่อน +2

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

  • @LAWRENCEXAVIERFCS
    @LAWRENCEXAVIERFCS ปีที่แล้ว +6

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

  • @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 ... ❤️❤️

  • @sian4430
    @sian4430 2 ปีที่แล้ว +10

    Please continue with the python lectures 🙏 Thank you

  • @codingexpedition
    @codingexpedition 2 หลายเดือนก่อน +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.

  • @aslimedia1212
    @aslimedia1212 2 หลายเดือนก่อน

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

  • @Codewithyashraj
    @Codewithyashraj 2 ปีที่แล้ว +4

    Good lecture and good quality of notes

  • @mohamedgaashaan7750
    @mohamedgaashaan7750 9 หลายเดือนก่อน +1

    Thanks you teacher jenny ❤❤❤🎉

  • @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")

  • @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 11 หลายเดือนก่อน

      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😭❤️

  • @DivyaKarike
    @DivyaKarike 4 หลายเดือนก่อน +1

    Love you mam❤❤

  • @StarANBC
    @StarANBC หลายเดือนก่อน

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

  • @StarANBC
    @StarANBC หลายเดือนก่อน

    Enjoying Learning from you...

  • @borishnongmaithem798
    @borishnongmaithem798 3 หลายเดือนก่อน +1

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

  • @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.

  • @sci-kings
    @sci-kings 2 ปีที่แล้ว +3

    Thanks ma'am for a great lecture.

  • @masigaallan6577
    @masigaallan6577 2 ปีที่แล้ว +1

    Python simplified. Thank you ma'am

  • @hunashyal001
    @hunashyal001 6 หลายเดือนก่อน

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

  • @belac_4176
    @belac_4176 2 ปีที่แล้ว +2

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

  • @sauravmishra9820
    @sauravmishra9820 4 หลายเดือนก่อน

    great lectures mam

  • @MeenakshiKumaripatro
    @MeenakshiKumaripatro 4 หลายเดือนก่อน

    Super explanation ❤

  • @sakethmog
    @sakethmog 2 ปีที่แล้ว +4

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

  • @ThomasBarron-y1p
    @ThomasBarron-y1p 3 หลายเดือนก่อน

    great educational video

  • @mathswithguddu
    @mathswithguddu 11 หลายเดือนก่อน

    Thank you madam for such good videos

  • @Emaan67816
    @Emaan67816 2 ปีที่แล้ว +1

    Good explanation 👍

  • @MuhammadAlip_
    @MuhammadAlip_ 2 ปีที่แล้ว

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

  • @Kaavyaav-g9g
    @Kaavyaav-g9g ปีที่แล้ว

    You are a saviour

  • @SumanLakavath
    @SumanLakavath ปีที่แล้ว

    Thanks for your lectures

  • @RoamingOutdoorBoys
    @RoamingOutdoorBoys ปีที่แล้ว

    Class studied successfully!

  • @pritamkumargupta1456
    @pritamkumargupta1456 2 ปีที่แล้ว +1

    Love u mam , you really work hard

  • @bhaveshvaishnav633
    @bhaveshvaishnav633 ปีที่แล้ว +1

    Awesome, Thank you for the free knowledge :)

  • @a.kaviya7998
    @a.kaviya7998 ปีที่แล้ว

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

  • @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

  • @AnshumanKumar1
    @AnshumanKumar1 ปีที่แล้ว +3

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

  • @marimuthu_a
    @marimuthu_a 2 ปีที่แล้ว +2

    Madam , could you explain about socket programming using c lang

  • @balaguruvarafhasrinivasalu6668
    @balaguruvarafhasrinivasalu6668 2 ปีที่แล้ว

    Jenny good teaching

  • @saynatyagi7442
    @saynatyagi7442 2 ปีที่แล้ว

    Very useful lectures, thanks a lot ma'am😇

  • @vandanaparimi5227
    @vandanaparimi5227 2 ปีที่แล้ว

    Worked smoothly, tysm

  • @NarendraPandluru
    @NarendraPandluru ปีที่แล้ว

    hello jenny, teaching-level speechless ♥ soooo nice madam

  • @harshaharsha6681
    @harshaharsha6681 ปีที่แล้ว

    Super 🎉🎉🎉

  • @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 ??

  • @ManishaLohani-ve8rl
    @ManishaLohani-ve8rl หลายเดือนก่อน +1

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

  • @amruthapotta2020
    @amruthapotta2020 9 หลายเดือนก่อน +1

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

  • @glps369
    @glps369 ปีที่แล้ว

    Thank You So Much

  • @seekervinod
    @seekervinod 2 ปีที่แล้ว +1

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

  • @Adi_venky_001
    @Adi_venky_001 5 หลายเดือนก่อน +1

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

  • @shivasai4424
    @shivasai4424 ปีที่แล้ว

    Super mam nice explained

  • @prasadchowdary4870
    @prasadchowdary4870 ปีที่แล้ว

    Please upload videos regularly
    So we can learn easily

  • @lilliana_es
    @lilliana_es 9 หลายเดือนก่อน

    God bless you madam

  • @manojnandy8526
    @manojnandy8526 2 หลายเดือนก่อน

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

  • @madhavkulkarni8030
    @madhavkulkarni8030 ปีที่แล้ว

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

  • @sachinkumarsachinkumar3359
    @sachinkumarsachinkumar3359 2 ปีที่แล้ว

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

  • @LingeshhvarenKA
    @LingeshhvarenKA 10 หลายเดือนก่อน

    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))

  • @AbdurRahman-ck7ue
    @AbdurRahman-ck7ue ปีที่แล้ว

    Nice lesson

  • @Mrecwcse_gSeminar
    @Mrecwcse_gSeminar 9 หลายเดือนก่อน

    U are superb mam

  • @meghasinha1706
    @meghasinha1706 2 ปีที่แล้ว

    Thank you for your efforts mam 🙂

  • @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)

  • @Jaswin4627
    @Jaswin4627 5 หลายเดือนก่อน

    Thank you mam

  • @priyadharshini.m1737
    @priyadharshini.m1737 ปีที่แล้ว

    Hi mam, what type of compiler are u using for this section mam

  • @shubhikasharma0203
    @shubhikasharma0203 2 หลายเดือนก่อน

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

  • @DeepakSharma-mn2ss
    @DeepakSharma-mn2ss 11 หลายเดือนก่อน

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

  • @careerwhere4508
    @careerwhere4508 6 หลายเดือนก่อน

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

  • @suyogpardeshi5843
    @suyogpardeshi5843 8 หลายเดือนก่อน

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

  • @bussasrinath5615
    @bussasrinath5615 ปีที่แล้ว

    3:16

  • @naresh6884
    @naresh6884 ปีที่แล้ว

    Iam tenth class student I came to see you❤❤

  • @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))

  • @khushityagi5930
    @khushityagi5930 2 ปีที่แล้ว +1

    Hello mam .... can you tell me some important questions in c (arrays,pointers,strings, structures, file handling in c) for bca exams

  • @OMPRAKASH-uz8jw
    @OMPRAKASH-uz8jw 2 ปีที่แล้ว

    waiting for next video on python

  • @ranjithmarripelli1656
    @ranjithmarripelli1656 2 ปีที่แล้ว

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

  • @cs-rohitsahu4943
    @cs-rohitsahu4943 2 ปีที่แล้ว

    Thank you ma'am

  • @ashishtamang6174
    @ashishtamang6174 ปีที่แล้ว

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

  • @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👍✨

  • @SRUthi_33
    @SRUthi_33 9 หลายเดือนก่อน

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

  • @kaleeskumar3996
    @kaleeskumar3996 ปีที่แล้ว +1

    This codeing write or wrong mam... I put any name the out put value 0 mam

  • @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

  • @grigoldvali4124
    @grigoldvali4124 8 หลายเดือนก่อน

    jenny i love youuuuu, from Georgiaaaa

  • @vamsivignesh2727
    @vamsivignesh2727 ปีที่แล้ว

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

  • @raghuvarmakuduka6522
    @raghuvarmakuduka6522 ปีที่แล้ว

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

  • @Amanarora4546
    @Amanarora4546 3 หลายเดือนก่อน

    Mam isse python complete ho jaegi na poori playlist se

  • @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

  • @kaleeskumar3996
    @kaleeskumar3996 ปีที่แล้ว

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

  • @Akalya-o3o
    @Akalya-o3o ปีที่แล้ว

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

  • @realaxationmusicriver6597
    @realaxationmusicriver6597 2 ปีที่แล้ว

    Tq very much mam

  • @jannuruthwikruthwik4537
    @jannuruthwikruthwik4537 2 ปีที่แล้ว

    Mam do all concepts on python
    ASAP plzzz

  • @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))

  • @divyagowda4809
    @divyagowda4809 ปีที่แล้ว

    Mam can you do tutorial on SQL and pl/sql

  • @mirajacademy4265
    @mirajacademy4265 4 หลายเดือนก่อน

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

  • @rahulnagave6536
    @rahulnagave6536 2 ปีที่แล้ว

    Mam aap shuru se kab se padha rahe hai python lecture

  • @amirullah7383
    @amirullah7383 ปีที่แล้ว

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

  • @ayushraj1676
    @ayushraj1676 2 ปีที่แล้ว

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