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