😂I attempted many times to completely learn python but after some time I start losing interest but this time it looks like I'm gonna complete python. Jor se bol janny mata di ❣️
@Abhishek-tp1tf2 жыл бұрын
Bhai asli teacher ke sahmne bhi aise he bolte ho kya koi cmnt dekhta hai aapki kaisa lgta hoga mata di kya language hai ye aapki shi se respect se bola kro jha se gyan mile vha se lo aur shi se bolo yr
@DEEPAKKUMAR-ij7hw2 жыл бұрын
@@Abhishek-tp1tf pehli baat ye lite joke tha itna serious nahi lena chahiye aur vo phrase koi disrespectful nahi hai
@DEEPAKKUMAR-ij7hw2 жыл бұрын
Aur tumhari sabhi comments ko dekh ke lagta hai tum bas jabardasti ka gyan dete ho
@adithyakrishna72062 жыл бұрын
y r u simping?💀
@sikandergalaadhvi Жыл бұрын
bro i think the same thing is going to happen to me. Thanks to jenny mam
@aparnamane48992 жыл бұрын
var1=int(input("Enter first no :")) var2=int(input("Enter 2nd no :")) sum=var1+var2 print(sum)
@bhukyaakhil86391 Жыл бұрын
If am not wrong it will give u different ans...just check one U have to add int before var1 and var2
@074_cse_rohankarthikeyans68 ай бұрын
@@bhukyaakhil86391 no its crct.we are just receiving the input as integer .so we dont need to declare var1 or var2 as integer .if it is received as integer the datatype of the variable will be as integer.
@aniltandivitb44822 жыл бұрын
num_1=int(input("Enter the first number ")) num_2=int(input("Enter the second number ")) print("sum is ",num_1+num_2)
@sidharthkaruvarath25322 ай бұрын
thanks bro, i was finding it hard to add the text with the answer even though I knew about the coma i forgot it. your answer helped me
@priya-we2hg2 жыл бұрын
गरीब घर में जन्म लेना आपकी किस्मत है पर गरीब मरना आपके हाथ में होता है मेहनत करो क्योंकि मेहनत के साथ पत्थर भी हीरा बन जाता है। 👍🏻👍🏻👍🏻
@fakeworld589 Жыл бұрын
At 6.30 time we can also write print("your name has" ,length, "characters") output will be your name has 12 characters
Mam you are killing us ....wow ... looking amazing
@Mojit002 жыл бұрын
Pdhhle bhai Ghar ka loan bhi chukana hai 💀
@Dheena_joe2 ай бұрын
a=input("Enter a number") b=input("Enter another number") c=int(a) +int(b) Print(c)
@jayanthkumar73912 жыл бұрын
Madam big fan of your lectures
@RajivThakur-vo3vr6 ай бұрын
first_number=input("the first number ") second_number=input('the second number') sum=int(first_number) + int(second_number) print(sum)
@trishitaghosh19324 ай бұрын
a =input("enter the value of first num1 =") b= input("enter the value second num2 =") print (int (a)+ int(b))
@manishshee69902 жыл бұрын
Mam spectacles looks great❤️
@iamjobayer_2 жыл бұрын
num1=int(input("enter your number:")) num2=int(input("enter your number:")) print(num1+num2)
@manikanta47425 ай бұрын
num_1=input("what is first number?") num_2=input("what is second number?") sum=int(num_1)+int(num_2) print(sum)
@IRIS_editss Жыл бұрын
a = input("enter the first num") b = input("enter the second num") print(int(a)+int(b))
@cryptoeric24Ай бұрын
#input num_1 = input("Enter first number: ") num_2 = input("Enter second number: ") # calculation total = int(num_1) + int(num_2) #output print("The sum of",num_1,"+",num_2,"is",total)
@bavafakru-x1d Жыл бұрын
number=input("enter a two digit number: ") first_digit=number[0] second_digit=number[1] third_digit=number[2] a=int(first_digit) b=int(second_digit) c=int(third_digit) print(a+b+c)
@surenkumars31812 жыл бұрын
thanks jenny i am practicing daily what you posted regularly in the topic of python it is very helpfull for me, please dont stop any where i am learning from you dont stop at any situation it will affect my dedicative career
@codersplayground2 жыл бұрын
kzbin.info/www/bejne/o6OUZ6qpr5hlisU
@sachinkumarsachinkumar33592 жыл бұрын
Yes
@dineshrathod76165 ай бұрын
Very informative lecture...Thank you maa'm
@udaykiranblogging Жыл бұрын
Done with my assignment mam. Thank you
@LingeshhvarenKA10 ай бұрын
name=input("Enter your name : ") length=len(name) print("Your name has",length,"characters") print("Your name has "+str(length)+" characters")
@devSackey Жыл бұрын
firstNumber = int(input("Enter the first number ")) secondNumber = int(input("Enter the second number ")) sum = firstNumber + secondNumber print(sum)
@AHMED-JMINE Жыл бұрын
num1 = input("enter your first number: ") num2 = input("enter your second number : ") result = int(num1)+int(num2) print("result")
@OMPRAKASH-uz8jw2 жыл бұрын
number_1=input("Enter the first number") number_2=input("Enter the second number") sum=int(number_1)+int(number_2) print("The sum of the numbers is " + str(sum))
@leeladrireddygandudi3279 Жыл бұрын
I think ord() is there to convert a character into a integer and a char() is to convert int into charecter
@asadivamsi62102 жыл бұрын
TQ you madam we are waiting your python class since year
@sajileee9 күн бұрын
Hi Jenny, Enter_1 = input("Enter a two digit Number : ") Save_1 = int(Enter_1[0]) Save_2 = int(Enter_1[1]) print(Save_1+Save_2) But below print is throwing the error print("Sum of your two digit is : " + Save_1 + Save_2) Error - TypeError: can only concatenate str (not "int") to str
@LingeshhvarenKA10 ай бұрын
num_1=int(input("Enter number 1 : ")) num_2=int(input("Enter number 2 : ")) sum=num_1+num_2 print("Sum of",num_1,"and",num_2,"is",sum)
@iamjobayer_2 жыл бұрын
Please post more lectures. I have a semester break now and I have only 14 days to learn python basic clearly... !!!!!!!!!!
@codersplayground2 жыл бұрын
kzbin.info/www/bejne/o6OUZ6qpr5hlisU
@suhith_thumma Жыл бұрын
print( int(input('your first number')) + int(input('your second number ')))
@aftabahmad4445 Жыл бұрын
first_no=input("enter the first number =") second_no=input("enter the second number =") print("first number is =" + first_no) print("second number is =" + second_no) print ("the addition of these two number is =" +str(int(first_no) + int(second_no)))
@reganakandwanaho12232 жыл бұрын
Hello Ma'am, I wish you make review lectures on file 🗃️ handling in C😔
@venkateswarlugoud4564 Жыл бұрын
Mam please continue python series we are waiting mam It's my humble request 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏✍️
@Anagha-gx3rj Жыл бұрын
num_1=int(input("Enter the first no.: ")) num_2=int(input("Enter the sec. no: ")) sum=num_1 + num_2 print("The sum of two numbers are: ",sum)
@NagiriSaipreethi7 ай бұрын
#Take 2 numbers as input from user& find out sum num_1=int(input("enter num_1 value:")) num_2=int(input("enter num_2 value:")) print(num_1+num_2)
@teena332 жыл бұрын
a=2 b=3 Print(int(a) +int(b)) You will surely get the output as 5
@mynk91132 жыл бұрын
Art student hu nhi pta coding sikhne ka man hone lga
@petachaithravardhanreddy4189 ай бұрын
a=input() b=input() c=int(a)+int(b) print(c)
@ramaraju14692 жыл бұрын
Here there is a correct output with commas length=len("Jenny") print("Your name has",length,"characters")
@ignaciotorressoto Жыл бұрын
print('The sum of numbers is: ' + str(int(input('number 1: ')) + int(input('number 2: '))))
@rameshkumar6videos2 жыл бұрын
Good afternoon mam # nice teaching
@brendatetio178 Жыл бұрын
I did this num_1=input("enter first number") num_2=input("enter second number") print(int(num_1) + int(num_2))
@syedsohel97012 жыл бұрын
a=input("enter the first value") b=input("enter the second value") Print(int(a)+int(b)) And it's done.... Thank you Mam I started learning in easier way ❣️
@dhananjaysingh41192 жыл бұрын
wow dude google is coming for you
@syedsohel97012 жыл бұрын
@@dhananjaysingh4119 Teri maa bhi hye Usme
@olakunleabiodun1489 Жыл бұрын
apply casting I.e add = int(a) + int(b) or else compiler will still recognize 1) the + sign as concatenation 2) the input number as string
@vijayramakrishnan6838 Жыл бұрын
ur a gifted person
@aiomotive86722 жыл бұрын
Mam please Also upload c++ regularly
@mano_0032 жыл бұрын
S mam we r also vaiting for ur cpp lectures mam
@tanvigupta27022 жыл бұрын
a=int(input("Enter any number a=")) b=int(input("Enter any number b=")) print(a+b) Output: - Enter any number a=23 Enter any number b=25 48
@shashikantm91352 жыл бұрын
Wow it's correct 😃
@reganakandwanaho12232 жыл бұрын
Int placement looks nice
@AbdurRahman-ck7ue Жыл бұрын
Nice way to teach miss
@kartheek64952 жыл бұрын
print(int(input("Enter first Number"))+int(input("Enter second number")))
@priya2220 Жыл бұрын
Print(len(str(1234))) Output : 4
@nikhilpragada15622 жыл бұрын
Give more content, as well as possible jenny mam, thank you
@SVJIRLI2 жыл бұрын
a=len("abcde") print("your name has",a,"characters")
@SADDALAJAYAPRAKASH Жыл бұрын
nice explanation mam🙂
@sreeswetha99292 жыл бұрын
Code is very clarity maintain same clarity
@limitess9539 Жыл бұрын
Dunno if ASCII table works for python, because if it does, I'm surprised that converting "jenny" to int doesn't work, it could take each character's ASCII value and sum it all up and convert the string "jenny" to int, instead of not working
@venkateswarlugoud4564 Жыл бұрын
Mam please continue python series please mam😔😔😔
@meghasandesam2 жыл бұрын
Mam you are looking 👌 nice with light blue color specticals matched with your dress
@AbdurRahman-ck7ue Жыл бұрын
I like your examples
@awnishkumar64312 жыл бұрын
well techniques to teaching
@Vitality_Vibes.co_6 ай бұрын
to check the length of converted str(length). We can even use - print(type( str(length))) is it fine to use this mam???
@adityasalvi9208 Жыл бұрын
Mam teach python is easy way
@hmraja96652 жыл бұрын
Can you provide a tutorial to learn design patterns and system design (HLD AND LLD)? LEARN PATH TO them.
@jupiter-842 жыл бұрын
Thank you ma'am
@harshaharsha6681 Жыл бұрын
Super🎉🎉🎉
@ankithhebbar80242 жыл бұрын
👌👌nice video
@mohdzakimohdzaki4712 жыл бұрын
when will you start java series videos.. i humble request for u so that i want to learn java and advance... well work 🍀🍀🌹
@jellyfish1772 Жыл бұрын
thanks maam
@_yes_you_are_right_2142 жыл бұрын
Okie...
@gayathrikonijeti1583 Жыл бұрын
Mam, will you please continue your series of python videos..?they are very helpful in our learning process mam
@Subhashd-oe4pq Жыл бұрын
No she will stop the series 😂😂😂
@glps369 Жыл бұрын
Thank You So Much
@soumya87482 жыл бұрын
Mam please complete c++ first 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
@lilliana_es9 ай бұрын
thank you madam
@saptarshibiswas19982 жыл бұрын
Ma'am please complete C++.
@sucharithapatnana5455 Жыл бұрын
Mam, please upload videos in Python series Please mam
@sadik6358 Жыл бұрын
Which app is best for python learning?
@sadik63582 жыл бұрын
Please make video about java basics
@nitish2001nb2 жыл бұрын
refer to @codewithharry
@golden_melodies11 ай бұрын
Can you make video on num py panda
@8millionairegovind6182 жыл бұрын
Op spec 😍
@bhaveshvaishnav633 Жыл бұрын
Thank you!!
@WannaBeYours30742 жыл бұрын
Mam please explain this statement i am struggling to understand this.....Return True if not a else False Please explain if anyone knoww
@theperfectionist39242 жыл бұрын
drag it onto the program from finder
@knightjaat9208 Жыл бұрын
mam but we can use comma instead of + like print("YOUR NAME HAS",b,"characters")
@kothariritu012 жыл бұрын
Ma'am..I have done M.Sc.IT. in 2007..I was taking guest lecture for two years after that I married.. Now I am house wife..I have one child.. . As you know it is very tough to restart again. Could you plz suggest what to do..
@VaishnaviTarpe Жыл бұрын
Mam plz also give us a Java programming languag
@emtiazahmed53332 жыл бұрын
C++ kaha hey?🥹
@nagelithirumalanaidu350510 ай бұрын
i done
@okappaw2 жыл бұрын
please how can i solve this? the video gets blurred in between and sharpens again so most times i have to just listen to the audio
@priyanshverma53712 жыл бұрын
I m waiting for list, tuple , sets , and dictionary tutorial,
@codersplayground2 жыл бұрын
Here is video kzbin.info/www/bejne/o6OUZ6qpr5hlisU
@priyanshverma53712 жыл бұрын
@@codersplayground thanks buddy
@codersplayground2 жыл бұрын
@@priyanshverma5371 most welcome bro you can also help me by sharing my channel with your friends you all are our motivation
@mettavenkatanarayanareddy52092 жыл бұрын
Mam in variables can we write variable as my_variableName Becoz I have used both snake and Pascal case
@kartheek64952 жыл бұрын
Yes we can.
@kaleeskumar3996 Жыл бұрын
Hi how to solve abc==ABC without uppercase lowercase functionality in python pls tell
@UttamPrakash9 ай бұрын
print("uttam" +int(length) + " prakash") why give print("uttam" +int(length) + " prakash") NameError: name 'length' is not defined
@S_Sagarjsr2 жыл бұрын
Mam, Apko dek kar aisa lagta hai hame, CS Branch nahi leh kar hamne galti kar di
@Instagram.Status Жыл бұрын
I am getting an error message tha "bool is not collable" When we type cast length to sting