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 ❤❤🙏🙏
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...
@@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'
print ("String Mnupulation Excercise, "+"String Concatination done with \"+\" sign "+'e.g print("hello"+"Jenny") '+"New lines can be created with backslash and n")
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 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
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
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)
#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))
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...✨
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)
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 ❤❤🙏🙏
Same here !
Same here 😂
Ssme😅
"शिक्षक और सड़क दोनों एक जैसे होते हैं..
खुद जहाँ हैं वहीं पर रहते हैं
मगर दूसरों को उनकी मंज़िल तक पहुँचा ही देते हैं। " 🙏🙏🙏
The best programming teacher I have seen so far. I am really enjoying your lectures. Thanks
very crystal clear explanation...Great lecture
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...
Instead of using input function if we write 1 in double quotes it will be considered as a string and it will be concatenated
Yes correct
name = input("What is your name? ")
a = str(len(name))
print("number of letters in name is " + a)
can u pls tell me , how does the 'str' works
@@fstgamer685 str converts anything into string
@@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'
@@ashapatil9527 name= len(input ("Name")) \\output:Nik
print(name) \\output:3
Nice lecture!! learnt a new thing❤ 14:34
In order to find the length,
name=input("What is your name?")
print(len(name)
Coding se dur dur tak mera koi rista nata nhi hai 😁😁lekin fir bhi subscribe kar rkha hai...or daily dekhta hun ... ❤️❤️
same seen
Please continue with the python lectures 🙏 Thank you
Hi Jenny i am from Sindh and i am much more impressed from your tutorials. Kindly start classes on machine learning in python please.
hii jenny i saw your video after two years but its helpfull for beginners . thanks alot .
Good lecture and good quality of notes
Thanks you teacher jenny ❤❤❤🎉
print ("String Mnupulation Excercise,
"+"String Concatination done with \"+\" sign
"+'e.g print("hello"+"Jenny")
'+"New lines can be created with backslash and n")
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
num1 = input("Give me a number? ")
num2 = input("Give me another number? ")
sum = num1 + num2
print("They equal", sum)
@@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
num1 = int(input("Give me a number? "))
num2 = int(input("Give me another number? "))
sum = num1 + num2
print("They equal", sum)
use this code
I am biotechnology engineer but after watching your videos programing languages become more easy for me😭❤️
Love you mam❤❤
a=input("Learning ethical Hacking from?")
print(a)
length=len(a)
b=input("From witch platform?")
print(a+b)
print(len(a+b))
Enjoying Learning from you...
name=input("What is your name?")
leng=len(name)
print(f"Your name has {leng} character")
Give exercises after the lecture like before one video I solve that also
Hey Poorna, How are you
This is the output.
Thanks ma'am for a great lecture.
Python simplified. Thank you ma'am
Awesome super teaching methods for beginners it's best way to understand here
Can't wait for your lecture on objects and values. Well-done
great lectures mam
Super explanation ❤
Mam is it possible for you to teach tableau course too!!
great educational video
Thank you madam for such good videos
Good explanation 👍
ma'am, you are looking very nice as well as lectures.
You are a saviour
Thanks for your lectures
Class studied successfully!
Love u mam , you really work hard
Awesome, Thank you for the free knowledge :)
Thank you for your wonderful lecture .it's very useful for me
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
Any school level student leaning this because i am in school and still learning this❤😂
Me in 9th standard
me in *th
Madam , could you explain about socket programming using c lang
Jenny good teaching
Very useful lectures, thanks a lot ma'am😇
Worked smoothly, tysm
hello jenny, teaching-level speechless ♥ soooo nice madam
Super 🎉🎉🎉
name =input("what is your name ")
print(len(name))
can we do like this mam to decrease no of lines ??
name="Manisha"
print(len(name))
output
7
print(len(input("what's your name?"))
Thank You So Much
mam pls complete c++course soon
it's a very foundation course in every collage
Easiest way name="jenny"
Print(len(name))
Answer will be 5
Super mam nice explained
Please upload videos regularly
So we can learn easily
God bless you madam
hi Jenny why you choose to do coding pychamp instead of anaconda ? I found it little difficult for using than anaconda.
This also possible
name=input("What is your name
")
print("Length of your name is",len(name))
Please upload many vedios on python(as fast as possible) ,egarly waiting Mam
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))
Both are correct bro...
Nice lesson
U are superb mam
Thank you for your efforts mam 🙂
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)
Thank you mam
Hi mam, what type of compiler are u using for this section mam
Ma'am can you suggest any book for python?? Please 🙏🏻🙏🏻
Hi Ma'am.... Is there any class for python in Jupyter note book
print("Hey "+input("what is your name?")+" How are you?")
name=input("What is your name:?")
print("Character count is:"+str(len(name)))
3:16
Iam tenth class student I came to see you❤❤
#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))
Hello mam .... can you tell me some important questions in c (arrays,pointers,strings, structures, file handling in c) for bca exams
Theory or practical exam?
waiting for next video on python
Mam c++ course is completed fully or still videos are there to upload?
Thank you ma'am
name=input("What is your name?")
print(name)
print(len(name))
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...✨
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)
Thanks👍✨
Mam, while executing the variable u u didn't u included " " in the parentheses?😮
This codeing write or wrong mam... I put any name the out put value 0 mam
{
name = input("what is your name?")
print(name)
print(len(name))
}
Is this correct code to print length of variable?
Yup it is correct, and also there is no need to use curly brackets
jenny i love youuuuu, from Georgiaaaa
Mam, Could you please teach AWS also it would very helpful to us
a=input("what is your name")
print(len(a))
Mam isse python complete ho jaegi na poori playlist se
Mam please explain output function in python
Mam iam a commerce student.
Mujhe kuch samajh toh nahi aaya but dekh acha lagga
Name= input (" What is your name? "(
Length= len( name)
Print( length)
name= input("what is your name?")
print(len(name))
like this also we can give know mam
Tq very much mam
Mam do all concepts on python
ASAP plzzz
Name=input ("what is your name?")
Print(len(Name))
name=input("what is your name?")
print(len(name))
Mam can you do tutorial on SQL and pl/sql
Madam,
I am a student of computer Technology. How to learn software?
Mam aap shuru se kab se padha rahe hai python lecture
Hello,
mam lecturer # 8 after my great efforts I did not understand, please repeat it again so I can understand. Thanks
I am sorry yaar, but you are irresistibly cute😐😅
Thanks for all the efforts btw, ur channel's great.