I will be dropping a python course in English on my channel ProgrammingWithHarry. Subscribe and stay tuned to get a notification - ruclips.net/channel/UC7btqG2Ww0_2LwuQxpvo2HQ Guys make sure to take the source code from the description. If you haven't already accessed my Complete Python Course (freely available as RUclips playlist), here is the link: ruclips.net/p/PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME I have covered each and every topic in depth in these 100+ videos. Hope you will like it. For more courses check out playlist section of this channel. All the best!
@@hasni0079 puri playlist padi hai 120 videos ki code with harry channel par. Inka hi hai. Jaake dekh lo pura python a to z aa jayega. Bhaut se projects, quiz and problem with answer bhi hai . voh dekh liya toh sab aa jayega. Ye video toh sirf revision ke liye hai like 3 - 4 months baad coding kar rhe ho toh ye video dekhkar sab vapis yaad aa jata hai . haa vaise playlist badi hai complete karne mai 3 - 4 months lag sakte hai . meri second programming language thi toh mereko 2 months lge the.
@@hasni0079 bro javascript ke liye bhi code with harry channel par jao aur playlist section mai jao 60 ya 70 video ki playlist banayi hai jismai full java sikhaya hai. One video ka bhi video hai. Aur sirf java hi nbi python, c and web development, Android development sab ke liye alag alag playlist hai. Jo chaho sikh sakte ho. Ekdum acche se explain kiya hai har topic . bas dyaan se dekho aur time do . jald baazi mat karna.
00:43:18 '' String->Float->Int Typcasting ''' a="31" print(a," is ",type(a)) ## Converting into Float b=float(a) print(b," is ",type(b)) ## Converting into Int c=int(b) print(c," is ",type(c)) ''' OUTPUT 31 is 31.0 is 31 is '''
python="45" python=int(python) python=float(python) Therefore, through this, we can convert a string variable to an integer and a float variable respectively. Answer to the question asked at 44:00
44:07 # 1. Typecasting Question and Answer # Create a three variables, int str float, int to float and str conversion, str to float and int conversion, int to str and float conversion a = 45 a = int(a) a = float(a) print(type(a)) b = "340" b = float(b) b = int(b) print(type(b)) c = 78.0 c = str(c) c = float(c) print(type(c)) # 2. Typecasting Question and Answer # Create a String to int and float conversion. d = "48" d = int(a) d = float(a)
@@shruts_thegirl if you think you can learn quickly and dont need to go in detail to much this video is best but if you think you need deep explanation go to this channel playlist and there is a python for abssoulute beginner watch that thats also best.
Ur way of teaching is fabulous. I'm Literally became ur fan. Here is ur quiz result:- Exponential Operator: It's used to raise power to the right Example:- print(4**2) Result- 16 ----------------------------------------------------- Floor Division Operator (//): It's a normal division method except that it returns either less than or equal to the normal division result by rounding it off. Example:- print(36//5) normal result- 7.2 python floor division Operator result- 7 ------------------------------------------------------ Modulo Operator (%): It's used to get the remainder of a division problem. Example:- print(5%2) Result- 1
Name = "Aman" Age = "20" percentage = "80" #(Type casting/ Type converstion ) Age = int(20) print(type(Age)) percentage = float(80+7) print(percentage) # in original form if you run this then this will definitely work copy and paste this source code ctrl+c and ctrl+v
Thanks Harry Bhai. Your RUclips channel is best for anyone to learn coding. I had learn Python, C, C++, Java from your channel. And looking forward to learn many more things. Thank you once again for all this excellent free courses.
Answer to the question at 44:00 # variables a=1 b="2" c=3.3 #type casting (int to float & string) ta = float(a) tta = str(a) print(ta) print(tta) #type casting (string to int & float) tb = int(b) ttb = float(b) print(tb) print(ttb) #type casting (float to int & string) tc = int(c) ttc = str(c) print(tc) print(ttc) #•••••••••••Thank you so much Harry Bhai••••••
Just learning coding / programming / IT for fun. Code with Harry is the best RUclips channel for freshers and experienced professionals. This teacher is BEST and have passion for teaching , without expecting from learners. Rarest human being, I only can say. God bless him.
Anamika Roy Gurgaon Wanna confess this is the first tym i did watch the complete coding video with practice . I must say you are intellectualy amazing. Looking forward to watch the complete python course soon. Great work Sir!
a = 22 # a is an integer variable b = "33" # b is a string variable c = 44.0 # c is a float variable a = str(a) print(a) a = float(a) print(a) b = float(b) print(b) b = int(b) print(b) c = int(c) print(c) c = str(c) print(c) OUTPUT:- 22 22.0 33.0 33 44 44
Same bro, I am also 12 and I am an ethical hacker and C# Developer and Now, I am learning python to easily make bots and apps with it to get a job in future easily
After creating three variables a,b and c- a = 15 b = 50.98 c = "Mahika" Typs casting cannot be done on string to int or float. Rest the other data types can be converted to respective data types by type casting Regards Thank you
a="394" b=int(a) c=float(a) print("The integer value is",type(b),b, "The floating value is",type(c),c)... Thanku so much bhaiya ❤️...for all of ur efforts for us......😃❤️
These are all lists and their work : Method Description append() Adds an element at the end of the list clear() Removes all the elements from the list copy() Returns a copy of the list count() Returns the number of elements with the specified value extend() Add the elements of a list (or any iterable), to the end of the current list index() Returns the index of the first element with the specified value insert() Adds an element at the specified position pop() Removes the element at the specified position remove() Removes the first item with the specified value reverse() Reverses the order of the list sort() Sorts the list
a = 27 b = 78.34 c = "56" a = float(a) # 27.0 a = str(a) # 27 b = int(b) # 78 b = str(b) # 78.34 c = int(c) # 56 c = float(c) #56.0 print(a) # 27, type = str print(b) # 78.34, type = str print(c) # 56.0, type = float
The way you teach is just amazing!! You can grab anyone's attention and nobody will ever be bored with your teaching. I have gone through many python tutorial but your tutorial is great.keep growing
harry bhai you are really op yaar.........other websites me python sikhane ke liye paise maang rahe hai aur thik se explain bhi nahi kar rahe hai par aap bhina paise liye hi itna accha explain kar rahe ho.... tq bhai......
Kon h wo🤷♀️🤷♀️🤷♀️ kaha se ate h wo jisne is video ko dislike kia🤷🤔🤔🤔🤔🤔🤔🤔🤔🤯🤯🤯🤯🤯🤯i mean just look at d quality of teaching itna to tum waha b nhi sikh skte jaha hazaro rs kharcha krke classes lagate ho😭 U r damn good sir aapki teaching is just wow👌👌👌😍😍😍😍😍shabd nhi mere paaas tarif k....
kuyu ki isne tho bas commads bataye hai syntax ni kis chez ko kaha lagana hai vo tho nahi bataya aur title me python full course hahah muje chutiya bana diya
# Quiz: Use for loop to itrate dictionary, set and tuples 1:30:07 # Your Quiz Answer dict1 = { "Name": "Aishwarya", "Age": 13, "First Name": "Rashi" } for item in dict1: print(item)
HARRY you are genius my age is 10 and you have made me a coder i can code c , c++, python , java script and many more from you i wish i could become a software devoloper thanks . your student ameya
aapka bahut bahut dhanyawad...bahut time kei jagah paid course par barbaad kiya lekin finally ab sahi platform mila..paid course se jayda valuable course hai..thanks a lot sir
I WAS EXPECTING TOO MUCH.. BUT STILL 1HR 45 MINS ME ISSE JYADA PYTHON NI HO SKTA.. AND IN BETWEEN VSCODE TRICKS AND 1-2 CHROME TRICKS.. NICE.. IT WAS A REVISION FOR ME BUT STILL NICE VIDEO #KEEPITUP
Want to work on live data science project that too free of any cost, so here is the chance join ruclips.net/video/xyq-zYr1cnI/видео.html and enjoy the free live session this 17 May 2020 Sunday 11:00 AM IST.
I will be dropping a python course in English on my channel ProgrammingWithHarry. Subscribe and stay tuned to get a notification - ruclips.net/channel/UC7btqG2Ww0_2LwuQxpvo2HQ
Guys make sure to take the source code from the description. If you haven't already accessed my Complete Python Course (freely available as RUclips playlist), here is the link:
ruclips.net/p/PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME
I have covered each and every topic in depth in these 100+ videos. Hope you will like it.
For more courses check out playlist section of this channel. All the best!
Bro tell deep about Machine learning And Data science
Thank you sir aapke video bahot kam ahe hai 🙏🙏
Thanks sir
I am from Pakistan.... And i am also following your django Course
Param from Jammu..... bhaiya ik video pyaudio installation pe bnaoo plllzzzz...project rukaa hua h meraaaa..plllzz
Watched for 45 minutes and already liked it a lot and the way you are explaining is very relaxing and entertaining . Thanks for your time .
?@
These words "starting se lekar end tk shikhaunga .. guaranteed!!"
Make my confidence 😁😁
Yar ek video ma ap kesy full.language sikh sakty hi
@@hasni0079 aap video dekhiye khud smj jaayenge
@@hasni0079 puri playlist padi hai 120 videos ki code with harry channel par. Inka hi hai. Jaake dekh lo pura python a to z aa jayega. Bhaut se projects, quiz and problem with answer bhi hai . voh dekh liya toh sab aa jayega. Ye video toh sirf revision ke liye hai like 3 - 4 months baad coding kar rhe ho toh ye video dekhkar sab vapis yaad aa jata hai . haa vaise playlist badi hai complete karne mai 3 - 4 months lag sakte hai . meri second programming language thi toh mereko 2 months lge the.
@@himanshuatri8198 bro mainy javascript ko chaye full videos plz help
@@hasni0079 bro javascript ke liye bhi code with harry channel par jao aur playlist section mai jao 60 ya 70 video ki playlist banayi hai jismai full java sikhaya hai. One video ka bhi video hai. Aur sirf java hi nbi python, c and web development, Android development sab ke liye alag alag playlist hai. Jo chaho sikh sakte ho. Ekdum acche se explain kiya hai har topic . bas dyaan se dekho aur time do . jald baazi mat karna.
00:43:18
'' String->Float->Int Typcasting '''
a="31"
print(a," is ",type(a))
## Converting into Float
b=float(a)
print(b," is ",type(b))
## Converting into Int
c=int(b)
print(c," is ",type(c))
'''
OUTPUT
31 is
31.0 is
31 is
'''
❤
Attention at online classes:0.001%
Attention at CodeWithHarry:99.999%
You made my lockdown man
Thanks
Guys, I need your support..plz subscribe
Bhai op hai
@@techbbas is way of explaining is the best
Zeshan Pakistan Fisalbad city
Ok
Anyone else who is watching this video not for exams but for love for coding❤❤❤❤❤❤❤❤
Me. I m from commerce field but want to learn computer language
I
yeah i am zoologist but want to learn it
Yep
Me.just wanted to learn that python Lang...I heard it is the father of all languages....
python="45"
python=int(python)
python=float(python)
Therefore, through this, we can convert a string variable to an integer and a float variable respectively.
Answer to the question asked at 44:00
They said three variables
44:07
# 1. Typecasting Question and Answer
# Create a three variables, int str float, int to float and str conversion, str to float and int conversion, int to str and float conversion
a = 45
a = int(a)
a = float(a)
print(type(a))
b = "340"
b = float(b)
b = int(b)
print(type(b))
c = 78.0
c = str(c)
c = float(c)
print(type(c))
# 2. Typecasting Question and Answer
# Create a String to int and float conversion.
d = "48"
d = int(a)
d = float(a)
e=("56")
e=int(56)
print(e+36)
92
e=(8)
e=float(8)
print(e/2.0)
4.0
Dislikers are that Whitehatjr wale..."Chintu"😂🤣
😂😂😂😂😂
🤣🤣🤣😂🤣🤣🤣🤣🤣😂😂😂😂😂😂😂😄😄😄😭😭😭🤠
but now their whitehatjr app is gone
Ok, I am also "white hat jr wala" but not disliker.
🤣🤣🤣🤣🤣🤣
what I haven't learned in my 4 years Bachelor's you taught me in just 90 mins..❤ Thank You ❤
@@shruts_thegirl if you think you can learn quickly and dont need to go in detail to much this video is best but if you think you need deep explanation go to this channel playlist and there is a python for abssoulute beginner watch that thats also best.
python sikha rahein hai , police maregi jungali janwar hai. aur python gussa ho gaya jaan ke laale pad jayenge.
alhamdulillah
@@naifuzzamanchisty5385 jay siya ram
Allahamdullila bro
Correction at 1:07:00, pop() can also remove elements at any position of a list by using it's index and can return the value but del doesn't return.
Answer of typecasting
1. a = 42
a = float(a)
a = str(42)
2. b = "22"
b = int(b)
b = float(b)
Bekar video
@@kamniagarwal4959Get lost then
@@ng_allrounder sorry, I don't support them who request like this
@Kamni Agarwal.. i thnk her name is wrong it should be kamini
@@snehaldeshmukh2217 yes
Ur way of teaching is fabulous. I'm Literally became ur fan.
Here is ur quiz result:-
Exponential Operator:
It's used to raise power to the right
Example:-
print(4**2)
Result- 16
-----------------------------------------------------
Floor Division Operator (//):
It's a normal division method except that it returns either less than or equal to the normal division result by rounding it off.
Example:-
print(36//5)
normal result- 7.2
python floor division Operator result- 7
------------------------------------------------------
Modulo Operator (%):
It's used to get the remainder of a division problem.
Example:-
print(5%2)
Result- 1
Nmae = "Aman"
Age = "20"
Percentage = "80"
(Type casting/ Type converstion )
Age = int(20)
Print(type(Age))
Percentage = float(80+7)
Print(type(percentage))
@@ng_allrounder I will support you but now after few days when I will start brushing my Java
Name = "Aman"
Age = "20"
percentage = "80"
#(Type casting/ Type converstion )
Age = int(20)
print(type(Age))
percentage = float(80+7)
print(percentage)
# in original form if you run this then this will definitely work copy and paste this source code
ctrl+c and ctrl+v
thank you very much sirji
a = "thanks a lot"
b = "harry sir"
print(a + b)
Can i learn from mobile
Is laptop is must
a='Thanks a lot'
b='Harry sir'
print=f'{a} {b.upper()} for making this video'
@@mr.person7538 you can do it on mobile
a="thanks a lot"
b = " harry sir"
# printing a+b
print(a+b)
code after ran
thanks a lot harry sir
[Done] exited with code=0 in 0.211 seconds
a = "6"
a = int(a)
a = float(6)
-> Here i convert string into integer and then float.
Thanks Harry Bhai. Your RUclips channel is best for anyone to learn coding. I had learn Python, C, C++, Java from your channel. And looking forward to learn many more things.
Thank you once again for all this excellent free courses.
Hunter ba
by
High quality channel for learning programing. 9.9 out of 10 stars bhai, thanks ⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐
Answer to the question at 44:00
# variables
a=1
b="2"
c=3.3
#type casting (int to float & string)
ta = float(a)
tta = str(a)
print(ta)
print(tta)
#type casting (string to int & float)
tb = int(b)
ttb = float(b)
print(tb)
print(ttb)
#type casting (float to int & string)
tc = int(c)
ttc = str(c)
print(tc)
print(ttc)
#•••••••••••Thank you so much Harry Bhai••••••
Iam folowing you from 2020❤ Please Riplay Harry vai😢😢
Just learning coding / programming / IT for fun. Code with Harry is the best RUclips channel for freshers and experienced professionals. This teacher is BEST and have passion for teaching , without expecting from learners. Rarest human being, I only can say. God bless him.
a = 45
b = "Program"
c = 36.23
convert 45 integer to string and float
a = str(a)
print(a)
a = float(a)
print(a)
Output =
45
45.0
Anamika Roy
Gurgaon
Wanna confess this is the first tym i did watch the complete coding video with practice . I must say you are intellectualy amazing. Looking forward to watch the complete python course soon. Great work Sir!
a = 22 # a is an integer variable
b = "33" # b is a string variable
c = 44.0 # c is a float variable
a = str(a)
print(a)
a = float(a)
print(a)
b = float(b)
print(b)
b = int(b)
print(b)
c = int(c)
print(c)
c = str(c)
print(c)
OUTPUT:-
22
22.0
33.0
33
44
44
I love coding just because of your teaching scheme only..Amazing explanation sir...Thank you😍
Thank you Very Much Sir. I am 12 years old and i had understand the Python Topic very Well Sir
bhai abb se itna matt padh..tujhe dekh ke tension ho rhi hai
@@sweety2088 Bhai free time me kar bhi kya sakte hai
Moksh Rana sahi hai Tu bhai ...keep it up.
Merko v sikhna hai...Bhai mein noob hu...🤣
Same bro, I am also 12 and I am an ethical hacker and C# Developer and Now, I am learning python to easily make bots and apps with it to get a job in future easily
If u want to rewise then please watch in 2x speed
Thanks Harry Bhai ❤️
a = 2
b = "123"
c = 12.90
abc = int(c)
print(abc)
abc = float(a)
print(abc)
abc = int(b)
print(abc)
a ="33"
b = int (a)
c = float(a)
Output:
print(a) #33 as a string
print (b) #33 as a integer
print (c) # 33.0 asa float
who else is watching this during lockdown to learn python
Me
Me
I
Me
Me
a="150"
a=float(a)
print(a)
a=int(a)
print(a)
b=34
b=float(b)
print(b)
print("Thank you so much")
Syntax error😆🤣🤣
Hi This is Manoj
# int
a = 24
# string
b = "24"
# CHALLENGE
a = float(a)
a = str(a)
print(a)
b = float(b)
b = int(b)
print(b)
amazing tutorial 😊
Best Computer Science channel in youtube👌👌👌
i love his dialogue " starting se leke end tak sikhayunga guaranteed"
He spells the 'Guaranteeeeed' word in a very appealing manner
Yes bro
a= "4"
a= int(a)
a= float(a)
print(type(a))
a will become a float i guess because its over written
After creating three variables a,b and c-
a = 15
b = 50.98
c = "Mahika"
Typs casting cannot be done on string to int or float. Rest the other data types can be converted to respective data types by type casting
Regards
Thank you
You're like a Blessing To Us Coders ❤
a="25"
a=int(a)
b=float(a)
print(a)
print(b)
Mr.loon
62
62.0
Typecasting
e="35" string
e=int (e)
e=float(e)
??
a="394"
b=int(a)
c=float(a)
print("The integer value is",type(b),b, "The floating value is",type(c),c)...
Thanku so much bhaiya ❤️...for all of ur efforts for us......😃❤️
I am also a teacher but you are amazing. You have great teaching skills👍👍👍👌👌👌👌👍👍👍👍
conversion of int float and string👍
a=199
b="6969"
c=42.42
print(type(a))
print(type(b))
print(type(c))
a= str(a)
print (a)
print(type(a))
a= float(a)
print(a)
print(type(a))
c= int(c)
print(c)
print(type(c))
c= str(c)
print(c)
print(type(c))
b= int(b)
print(b)
print(type(b))
b= float(b)
print(b)
print(type(b))
#GreatVideoBhai
print("Helped a lot..")
Watching this a day before exam 😂
Liked...
Sahi h
Bahut dukh ki baat hai...rip
Me too😂
samehere bro
Me too before 4 day 😂
Love you harry Awesome teaching
Asif from Bharuch gujarat
These are all lists and their work :
Method Description
append() Adds an element at the end of the list
clear() Removes all the elements from the list
copy() Returns a copy of the list
count() Returns the number of elements with the specified value
extend() Add the elements of a list (or any iterable), to the end of the current list
index() Returns the index of the first element with the specified value
insert() Adds an element at the specified position
pop() Removes the element at the specified position
remove() Removes the first item with the specified value
reverse() Reverses the order of the list
sort() Sorts the list
a = 27
b = 78.34
c = "56"
a = float(a) # 27.0
a = str(a) # 27
b = int(b) # 78
b = str(b) # 78.34
c = int(c) # 56
c = float(c) #56.0
print(a) # 27, type = str
print(b) # 78.34, type = str
print(c) # 56.0, type = float
1.a=44
a=str(a)
a=float(a)
2.b="28"
b=int(b)
b=float(b)
3.c=30.7
c=int(c)
c=str(c)
I love the technique he teaches with practical ❤️
U literally converted coding into human interactable communication in Hindi and then taught us how to talk to our pc using our code
Wooow awesome man
integar=34
integar=float(integar)
print(integar)
print(type(integar))
integar=str(integar)
print(integar)
print(type(integar))
output:
34.0
34.0
Who is beginner n learing python first?
Yeah
🥺🥺🥺🥺🙏🏻 thank you sooooo much sirr finally I got the right teacher and amazing understanding video ❤️
The way you teach is just amazing!! You can grab anyone's attention and nobody will ever be bored with your teaching. I have gone through many python tutorial but your tutorial is great.keep growing
harry bhai you are really op yaar.........other websites me python sikhane ke liye paise maang rahe hai aur thik se explain bhi nahi kar rahe hai par aap bhina paise liye hi itna accha explain kar rahe ho.... tq bhai......
i love coding and this guy is expert in teaching coding
Love from Pakistan bro really really loves your way of teaching ♥️♥️♥️♥️
Very very helpful for me and others who are interested in python ♥️♥️
String = '12345'
String = int(String)
String = float(String)
a= 5 #int
b= "32" #string
c= 5.0 #float
a= str(a)
print(a)
a= float(a)
print(a)
b=int(b)
print(b)
b=float(b)
print(b)
c=int(c)
print(c)
c=str(c)
print(c)
o/p
5
5.0
32
32.0
5
5
>
my code
mystr = '100'
mystr = int(mystr)
print('integer', mystr)
same goes for float, str, list etc.
whats bad in it?
@@gabbarbhaiop I think he meant bro.
Kon h wo🤷♀️🤷♀️🤷♀️ kaha se ate h wo jisne is video ko dislike kia🤷🤔🤔🤔🤔🤔🤔🤔🤔🤯🤯🤯🤯🤯🤯i mean just look at d quality of teaching itna to tum waha b nhi sikh skte jaha hazaro rs kharcha krke classes lagate ho😭
U r damn good sir aapki teaching is just wow👌👌👌😍😍😍😍😍shabd nhi mere paaas tarif k....
True
kuyu ki isne tho bas commads bataye hai syntax ni
kis chez ko kaha lagana hai vo tho nahi bataya
aur title me python full course hahah
muje chutiya bana diya
Kaha se aate hai ye log
true bro
true bro
I made my first snake game on my life, just for harry...
Love from Assam
def sum(a,b,e):
print("this sum is ")
C=a+b+e
return C
d=sum(34,45,43)
print(d)
Unbelievable teaching 💗❤️❤️
I love coding 🤩
Bro did you learn anything
Thank you so much Harry. You are simply awesome.. "Bro" wala feeling aata hai.. when I watch your videos. Thanks a lot. Good wishes from the heart! :)
Ex 1.
a="12"
a=int(a)
print(a)
a=float(a)
print(a+2.4)
Output:
12
14.4
# Quiz: Use for loop to itrate dictionary, set and tuples
1:30:07
# Your Quiz Answer
dict1 = { "Name": "Aishwarya", "Age": 13, "First Name": "Rashi" }
for item in dict1:
print(item)
Your teaching explanation alwasy amazing yar
I love your teaching methods
U r really greate man
nice
ᑕᕼᗩᒪ ᒍᑌTᕼI
@@AdityaChoudhary2108 🤭🤭
Watch and learn some mini projects using python fully working executable by which you can directly install it
Click in this @ ForCodeCoder
agar ise good way of teaching kehte h to baki sabhi teachers ko tu himalya per chle jana chahi ye
HARRY
you are genius
my age is 10 and you have made me a coder
i can code c , c++, python , java script and many more from you
i wish i could become a software devoloper
thanks .
your student ameya
My age is 12
Really?😲
my 10
my age is 8 year
i am 5 year old
You have done a very well job . You have compact the whole course to understand the language only .
Thanks Harry
sir , the question you given at 59:40 of the operators, here's the answer
a = 3
# b = 2
# print(a ** b)
# print(a // b)
# print(a % b)
e = "41"
e = int(41)
print(e)
e = float(41)
print(e)
a="10"
a=int (a)
Print(a)
a=float(a)
Print(a)❤
1. 10
2. 10.000
@@pradyumnagayake4825 yes😸
My teacher also suggest your RUclips channel 😂💞💞😂💞
aapka bahut bahut dhanyawad...bahut time kei jagah paid course par barbaad kiya lekin finally ab sahi platform mila..paid course se jayda valuable course hai..thanks a lot sir
Please start machine learning. You are best coder in you tube.
I agree, pls start machine learning
I also want ML course 😁
yes bro we want it
Please sir make machine learning !
Plz share me ur ML video, if u have upload the same here.
E="25"
E=float(25)
Print(e+5)
E="25"
E=int(25)
Print(e+5)
Sir thanks you for this detailed introduction to Python and as you told me I have commented important points before every code
a = "32"
a = int(a)
print(a+2)
a = float(a)
print(a+2.2)
I WAS EXPECTING TOO MUCH.. BUT STILL 1HR 45 MINS ME ISSE JYADA PYTHON NI HO SKTA.. AND IN BETWEEN VSCODE TRICKS AND 1-2 CHROME TRICKS.. NICE.. IT WAS A REVISION FOR ME
BUT STILL NICE VIDEO
#KEEPITUP
Any one else this one of the best code teacher in world
Saif ali from Gujarat
Aap ke python ke playlist starting kiya hai, aap ka samjane ka bhot jordarr tarika hai
Thanks for python playlist for free
Hi
e = 33
e = int(e)
e = float(e)
print(type(e))
print(e+2)
im trying to learn something new during lockdown
: )
bahut accha kam kar rahe ho... sirf sikho mat sikh ke apply bhi karo
Me too.
ruclips.net/channel/UC7eQmk5Baef8i80HwnmFoPQ
Same bro
Want to work on live data science project that too free of any cost, so here is the chance join ruclips.net/video/xyq-zYr1cnI/видео.html and enjoy the free live session this 17 May 2020 Sunday 11:00 AM IST.
Hands down
This is the best python class I have ever attended.
amazing! i am in 8th std but still able to do coding and learn python!
Really
'''
OUTPUT
31 is
31.0 is
31 is
Just wanted to learn basic syntax of python in less time and it does the job so great. HARRY Bhaiya thank u for different variation of courses ❤️
Sir, one video on SQL please. For beginners. A Huge respect to you.
1.print("Thank you")
2.if(age==2+)
3.print("have a great day")
s = "56.7"
i = 43
i=float(i)
print(i)
i=str(i)
print(i)
s = "56.7"
s=float(s)
print(s)
s=int(s)
print(s)
f = 34.0
f=int(f)
print(f)
f=str(f)
print(f)
herry sir ap level k teacher ho and carry on your participation in programming courses!!!!
Sumit kumar (rajkiya engineering College Azamgarh)
Bro After 12 Can I Pursue Python Language Learning Skill By any Coaching Centre, and can I get job without Any college Degree Please Reply
Thank You
@@AfrozKhan-mo8il If you are an Indian, then, most companies will expect you to have an Engineering/ MCA degree.
"is Satyay ko koi badal nahi sakta " 😂😂😂 str LEN aur str INDEX ka fark samjhane sabse best way...
In case, anyone wants to learn python by making games, have a look here.
ruclips.net/video/6bU7B9aWY8E/видео.html
FULL PYTHON COURSE with 24X7 Doubt Assistence
ruclips.net/video/0TFFTzHXk8c/видео.html
Bhai 12th ki liye thik rehga
As i am feeling like that I am in the couchin instutation . Thank you sir🙂🙂🙂❤❤❤❤❤😘😘😘😘
def sum(a,b):
return (a*b)
d=sum(3,4)
print (d)
May Allah give you potential to achieve your goal. Ameen. I have downloaded a lot of videos from your channel. Keep it up bro. Thanks.
s = "5"
s = int(s)
print(s+2)
Output : 7
s = float(s)
print(s+2)
Output : 7.0
s = str(s)
print(s+2)
Output: error 😁
5:01 If you are having an error, try writing py instead of python.. Hope it works!!
print(a)
print(type(a))
b=10
print(float(a))
print(str(a))
c=10.10
print(int(a))
print(str(a))
d="10"
print(float(a))
print(int(a))
I really want to become a coder.
Mee too