Тёмный

#10 Python Tutorial for Beginners | Data Types in Python 

Telusko
Подписаться 2,4 млн
Просмотров 1,5 млн
50% 1

Check out our courses:
Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : bit.ly/java-spring-cloud
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusko.com/
Instagram : / navinreddyofficial
Linkedin : / navinreddy20
TELUSKO Android App : bit.ly/TeluskoApp
In this lecture we are discussing about DataTypes in Python:
-- why it is important?
-- how to use it ?
Python has several built-in data types. Here are some of the most common ones:
i) NoneType: This is a special data type that represents the absence of a value. It is similar to null in other languages.
ii) Numbers: These can be integers, floating-point numbers, or complex numbers.
iii) Booleans: These are values that represent True or False.
iv) Lists: These are ordered collections of objects, enclosed in square brackets.
v) Tuples: These are similar to lists, but are immutable (i.e., their contents cannot be changed), and are enclosed in parentheses.
vi) Sets: These are unordered collections of unique elements, enclosed in curly braces.
vii) Strings: These are sequences of characters, enclosed in single or double quotes.
viii) Ranges: These are immutable sequences of numbers, and are commonly used to iterate over a sequence of numbers in a for loop.
ix) Dictionaries: These are collections of key-value pairs, enclosed in curly braces.
i)None Type
a=None
type(a)
ii)Numbers
int: if you want to assign a integer value to a variable
a=5
type(a)
float: if you want to assign a float value to a variable
num =2.5
type(num)
complex: if you want to assign a complex value to a variable
num =2+9j
type(num)
type conversion: if you want to convert one data type to another data type
a=5.6
b=int(a)
type(b) # output : int
k=float(b)
type(k) # output : float
c=complex(4,5)
type(c) # output : complex
iii)boolean: if you want to assign a variable with a boolean value
a= True
type(a) # output : bool
bool=3 less then5
True
type(bool)
Sequence data types : if you want to assign a variable with multiple values
List, Tuple, Set, String, Range.
iv) List if you want to assign a variable with multiple values and you want to change the values
-- In Python, a list is a collection of ordered and mutable elements enclosed
in square brackets. Lists are one of the most commonly used data structures in
Python because of their versatility and flexibility.
lst=[25,36,45,12]
type(lst) # output : list
v) Tuple: if you want to assign a variable with multiple values and you donot want to change the values make immutable
-- In Python, a tuple is a collection of ordered and immutable elements enclosed in parentheses.
Tuples are similar to lists, but they cannot be modified once they are created, which makes them
useful for storing data that should not be changed during the program's execution.
t=(25,36,45,12,7)
type(t) # output : tuple
vi) Set: if you want to assign a variable with multiple values and you donot want to change the values and you donot want to duplicate values
-- In Python, a set is an unordered collection of unique elements enclosed in curly braces.
Sets are useful for storing data that should not contain duplicates, such as a list of
users on a website.
s={25,36,45,12,25,36}
type(s) # output : set
#output: {36, 12, 45, 25}
vii) String: if you want to assign sequence of characters to a variable
-- In Python, a string is a sequence of characters enclosed in single or double quotes.
Strings are immutable, which means that they cannot be modified once they are created.
str = "hello"
type(str) # output : str
we are not talk about char data type in python
st='a' # every character is a string in python
viii) Range: if you want to assign a variable with multiple values and you don't want to change the values and you want to generate a sequence of numbers
-- In Python, a range is a sequence of numbers that is immutable and iterable.
Ranges are commonly used to iterate over a sequence of numbers in a for loop.
range(10) # range data type
type(range(10)) # output : range
list(range(2,10,2)) # output : [2, 4, 6, 8]
ix) Dictionary: if you want to assign a variable with multiple values and you donot want to change the values and you want to assign a key to each value
-- In Python, a dictionary is a collection of key-value pairs enclosed in curly braces.
Dictionaries are useful for storing data that is associated with a key, such as a list of
users on a website and their corresponding email addresses.
d={1:'a',2:'b',3:'c'}
type(d)
d1={'navin':'samsung','rahul':'iphone','kiran':'oneplus'}
d1.values() # output : dict_values(['samsung', 'iphone', 'oneplus'])
d1.keys() # output : dict_keys(['navin', 'rahul', 'kiran'])
d['rahul'] #output : 'iphone'
d1.get('kiran') #output : 'oneplus'

Наука

Опубликовано:

 

13 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 1 тыс.   
@Maheshwari_Ravi
@Maheshwari_Ravi 4 года назад
Hi Navin, could you please also provide exercise sheets so that we can get good practice on each topic as soon as a video is finished.
@ishanslathia5877
@ishanslathia5877 3 года назад
We see
@adarshkurdekar1525
@adarshkurdekar1525 3 года назад
Yes true
@krishnameera9969
@krishnameera9969 3 года назад
Yeah
@krishnameera9969
@krishnameera9969 3 года назад
U could it would be great
@tridoshic1688
@tridoshic1688 3 года назад
google
@satyavanikalisetti3134
@satyavanikalisetti3134 4 года назад
I'm searching for the one who can teach me good but found the best, u r really amazing sir,I have suscribed ur channel and also suggested my friends those who are dying to learn python like me...tq so much sir 🙏
@roopa6975
@roopa6975 4 года назад
A fantastic jobb done by a knowledgeable person. I wish you were my tutor in college. Your efforts are much appreciated. Thank you
@MOHNAKHAN
@MOHNAKHAN 4 года назад
You are one of the most most best Language-RU-vidr among other Language-RU-vidrs who doesn't confused to their viewers ...👍👍👍
@GiovaniGalicia
@GiovaniGalicia 5 лет назад
For those who are getting an error when using range(10) and then list(range(10)), try closing IDLE then try it again. It worked for me.
@arpit-jain
@arpit-jain 5 лет назад
worked for me also
@ayushiajit3088
@ayushiajit3088 5 лет назад
Worked for me!! :) can you state the reason behind closing and re opening?
@GiovaniGalicia
@GiovaniGalicia 5 лет назад
@@ayushiajit3088 Not sure to be honest. But what I can think of is that reopening refreshes IDLE in some way.
@BalbirSingh-qv4gi
@BalbirSingh-qv4gi 5 лет назад
Worked for me
@pulkitkumar6665
@pulkitkumar6665 5 лет назад
me too
@nilusah4356
@nilusah4356 4 года назад
You explained everything in a practical and fun way. Thank you for your videos.
@nishajenifer1195
@nishajenifer1195 4 года назад
You are really a best teacher. Even school kids can learn python when you teach. Im very happy that i found you
@alltechsystem4540
@alltechsystem4540 3 года назад
Excellent teaching! I HAVE JUST WATCH 10 VIDEOS OF NAVIN SIR AND I AM FULLY UNDERSTAND HOW TO DO CODING.EXCELLENT TEACHING SIR! U WILL LIVE 1000 YEARS.
@kestergascoyne6924
@kestergascoyne6924 4 года назад
This is an incredibly fast way to learn this. Thank you.
@ShivamPanchbhai
@ShivamPanchbhai 5 лет назад
12:22-12:31 "you have to use curly brackets now why curly brackets because keys should not repeat and what doesn't repeat set and set uses curly brackets so it makes more sense here" what an amazing explanation :)
@bitte929
@bitte929 5 лет назад
Yeah even i am blown out its awesome way of explaination
@budrpdreamworld8158
@budrpdreamworld8158 5 лет назад
that means you shoudn't assign more than one value to one key
@arunbisoyi
@arunbisoyi 5 лет назад
what happen if you define multiple key with same name and values of them will be different
@sheikhabdulqadirjillani5152
@sheikhabdulqadirjillani5152 5 лет назад
@@arunbisoyi the last duplicate key will be considered instead
@VirendraPawar2595
@VirendraPawar2595 4 года назад
sir you are like Guru Dronacharya to me these videos are so helping me to gain my pragmatic knowledge in python. sir i was totally zero in coding but now due to your teaching im building my interest in coding thank you so much for this and please keep inspiring and educating us as u do .......lots of support and love :) And sir please upload some exercise sheets after your videos so that we can practice it.....
@robincr3323
@robincr3323 2 года назад
Hello Sir, I love to watch this series. I have always watch your video whenever I was stuck or learn a new thing about software development. You made a great video for student who wants to learn from basics and reach to advances.
@pviyengar1950
@pviyengar1950 4 года назад
I am actually referring a lot of resources right now as I am going into the IT industry through data science, AI and ML, and to be totally honest, I have found some tips and tricks that I did not get in other tutorials. Kudos for that, keep up the good work. Thanks for such an amazing and selfless content. I would still like to ask you if you have any other resources that would help me in my journey ahead, do let me know in the reply.
@kamaleshwaranselvaraj7143
@kamaleshwaranselvaraj7143 4 года назад
Hi Navin, Thanks for your great tutorials . In this video having a minor correction at 8:46 . Other modern programming languages ( like "Swift Programming Language" ) also supports "Range". In Swift, having dedicated range operators ( "..." , "..
@sravyagorapalli6564
@sravyagorapalli6564 3 года назад
Your way of teaching is excellent sir..before watching your classes, i am afraid of doing coding but now i have got a lot of confidence that's all because of sir...Thank you for sharing your knowledge to us....
@MinhajAhmedAnsari
@MinhajAhmedAnsari 4 года назад
I am learning python first time and your tutorials are really helpful. Hope to follow this playlist till end.
@ravidarji711
@ravidarji711 4 года назад
Amazing explanation, Telusko, Greart Work, Thanks a lot. You are in my list of Wonderful Mantor.
@shashankbharadwaj2129
@shashankbharadwaj2129 5 лет назад
Thanks for your vedios I wanted to learn python for machine learning and these basics helped me to grade up faster
@RavikanthTalakoti
@RavikanthTalakoti 4 года назад
I am practicing the lessons you are teaching in my computer. My computer has python 3.7 so I am able to practice whatever you are explaining. And these are very helpful to me. Thanks a lot for the lessons you are teaching to me.
@loveafinni
@loveafinni 11 месяцев назад
What a great session! Thank you Navin.
@pastryclub3705
@pastryclub3705 4 года назад
Very good explantion Navin. Thank you!
@arshitaagrawal5334
@arshitaagrawal5334 4 года назад
Didn't find better videos than yours. Thankyou Sir😊
@bhanumurthyramala1158
@bhanumurthyramala1158 2 года назад
marvelous presentation by Navin Reddy. Very precise. Thank you for your time for educating all. Great job.
@Dhavalvacchani
@Dhavalvacchani 3 года назад
Your truely an inspiration sir.I love to learn python since iam from Civil Background.your such an amazing person teaching in a simple way.thanks for all the things sir.your my guru forever
@MrGauharabbas
@MrGauharabbas 3 года назад
thank you so much man, Day after tomorrow is my python exam, and you made it easy for me
@kalabanki4865
@kalabanki4865 Месяц назад
Great teacher in this era still watching in 2024😊
@emotionalhealinghub5036
@emotionalhealinghub5036 20 дней назад
Same here
@saijyothi2903
@saijyothi2903 3 года назад
What an amazing person u are... Hats off to u for teaching such a tough subject in a very funny way.. really ur the best sir. Tq Soo much
@poojanaidu4087
@poojanaidu4087 3 года назад
Your teaching style is simple and clear Anyone can easily understand by your teaching
@AllThingsChic
@AllThingsChic 5 лет назад
I am finding your variables so informative. Looking forward to more videos.
@gamersection7469
@gamersection7469 5 лет назад
Yep..his teaching is good !
@prince2847
@prince2847 5 лет назад
Sailing smoothly so far with captain navin.
@sanjeevagarwal1513
@sanjeevagarwal1513 5 лет назад
Sir u r awsm i have watched all ur last python tutorials and its helping me a lot thnx once again
@dishantkumbhar8822
@dishantkumbhar8822 4 года назад
U are really fantastic sir, just provide notes or exercise so we can practice all if u can Thanks for such a dedication to ur youtube channel.and helping us grow.
@gughanxd3364
@gughanxd3364 5 лет назад
Tomorrow I have exam,this is very helpful thanks😘
@rakeshaanjne6776
@rakeshaanjne6776 5 лет назад
It's very helpful. Thanks Navin.
@VITS--di7ht
@VITS--di7ht 4 года назад
Sir,really ur doing great job.Very helpful to us.Enjoying your classes sir.Thank you so much GURUJI.
@toxichacker940
@toxichacker940 3 года назад
Thanku very much sir🙏.your teaching is really awesome and helpful. I am in first yr and I was truly looking for this type of tutor. Koncham practice cheyadaniki iste inka manchi untunde, but I'll get it. Thanku once again sir. 🙏🙏
@rohitkijbile
@rohitkijbile 6 лет назад
Thank you sir.. concepts are getting cleared
@elegik686
@elegik686 4 года назад
You are doing a good job to make it easy, understandable, and intuitive. For instance, why curly brackets are used for Dictionaries? Because keys should not repeat and what does not repeat - set." 🤯 😲 Damn! Now, I know why they both used curly brackets. Thanks for the tutorials.🙂
@jagadhishvegi98
@jagadhishvegi98 2 года назад
Hi navin, it was so good to learn from your videos. Having so much fun in watching your videos, i mean you explain so clearly each and everything. Love you man. Please do create more videos.
@lakeshnampelly3742
@lakeshnampelly3742 3 года назад
You are My Mentor.......!!! Great to Have a Mentor like "You".
@akankshm9639
@akankshm9639 3 года назад
omg-such a transparent explaination..nice..i studied python here and now my aim is to become a data scientist
@saigoudshakaram7805
@saigoudshakaram7805 3 года назад
Hello Are You a Data Scientist now ? If yes Plz let me know the protocol for it !
@akankshm9639
@akankshm9639 3 года назад
@@saigoudshakaram7805 no sir..i am still studying 12th grade and data science course
@saigoudshakaram7805
@saigoudshakaram7805 3 года назад
Ho Good From where Are you persuing the course ?
@milanbariya4914
@milanbariya4914 4 года назад
🤓 Quiz Answer 🤓 How to access the help docs in python? Answer : " help( ) " using this command we can access the docs in python. " help ( "LISTS" ) We can also use this command to search for specific topic in help doc.
@Bago10
@Bago10 3 года назад
No bro we should not use hypen symbol answer: help( ) help(topics)
@abhishekprabhakar9025
@abhishekprabhakar9025 6 лет назад
How beautifully you explain..such concepts..crystal clear 😍👌👌
@chessbd
@chessbd Год назад
Quick and precise! I guess I have to write the same thing to make comment on your every lesson!! Thanks again for sharing the light.
@mihaipruteanu3502
@mihaipruteanu3502 6 лет назад
[13:40] I have a key, I have a value. Hamm value-key :) Thank you fot tutorial :)
@S-I-D-D-H-U
@S-I-D-D-H-U 5 лет назад
very few got the joke, by the way this joke is derived from the song pineapple-pen . isn't it funny now?
@NoOffenseAnimation
@NoOffenseAnimation 5 лет назад
Ok I get it
@II_xD_II
@II_xD_II 5 лет назад
@@S-I-D-D-H-U xD
@vishnumadhira9682
@vishnumadhira9682 4 года назад
Nice English
@sonalikapainkra4648
@sonalikapainkra4648 4 года назад
Sir I like your speed it's perfect for me and u r good teacher
@jaiprasaad5978
@jaiprasaad5978 4 года назад
Dude you're the one who actually posted this comment here 6 days ago. So would you mind helping me out? I watched the "more on variables" video and I do understand that the address and variable value in related. I also understood how it changes when you set a new value to a variable. But my question is now in this video, in the update function he is passing the value of x...and x is set to 8. So when he calls the function without any arguments ..it' should output 8. When he put in the value of 10 it still made sense as it output 8. But what I don't understand is that when he sets a new variable a and then sets it as 10, the function suddenly changes and outputs the value of a....which isn't supposed to happen as in the function itself the value of x only is used and hardcoded right?
@arshap9351
@arshap9351 3 года назад
now im loving programming only because of you Navin. great job
@georgeosborn421
@georgeosborn421 3 года назад
you are my favourite python youtuber thanks for being so helpful
@IMdAbdulquadirKhan
@IMdAbdulquadirKhan 4 года назад
in order to access documentations type: help("what ever doubt in the topic") example-help("STRINGS")
@kiranngill
@kiranngill 3 года назад
every time you say 'kiran' in any video, my face kinda lits up lol
@Mayankcodezz
@Mayankcodezz 3 года назад
😂
@jeeveshmishra1934
@jeeveshmishra1934 3 года назад
TRUEEE LUBBBBB thanks man may u achieve lot more successs!!!
@snehajitchandra2976
@snehajitchandra2976 6 лет назад
Your learning style is awesome so we are understand every chapter clearly
@kshitiz4372
@kshitiz4372 3 года назад
Hi Navin sir , could you please also provide exercise sheets so that we can get good practice on each topic as soon as a video is finished.
@shiili7699
@shiili7699 4 года назад
ans: type "help()" in cmd interface
@animerule4140
@animerule4140 2 года назад
If you sir be the lecture of my class of programming.Then suerly me and our class student get the full knowledge of programming.Thank you for teaching us with the better way😍
@shubhampatrick
@shubhampatrick 6 лет назад
Thanks a lot for all Python tutorial videos.
@srishtisrivastava3337
@srishtisrivastava3337 3 года назад
If we need to access the HELP doc in python, we can simply call the help() function. If we know the particular keyword of the topic we are seeking help for, we can also write it as : help("LISTS")
@ritvikpandey6878
@ritvikpandey6878 4 года назад
You can simply access help docs by typing help()
@sumidasdutta582
@sumidasdutta582 Год назад
Thank you Mr. Reddy ,your videos are really very helpful for me day by day
@singhshivandra7601
@singhshivandra7601 5 лет назад
Sir.... U r awesome...... The way u explain everything..... Is very easy to understand...... And thank you so much..... For your support..... 😊😊
@luckykhan7408
@luckykhan7408 5 лет назад
Dear Navin, Is there any website so that we can also practice python programing
@prashantswami4811
@prashantswami4811 4 года назад
Download sololearn app. From that we can practice any language whichever we want. And we also can learn through that app.
@II_xD_II
@II_xD_II 5 лет назад
sir i have one doubt - Does python separates list and set just by "[]" and "{}"?? so why they make two different things if they are same -_- and same thing as tuple.
@Amr-Ibrahim-AI
@Amr-Ibrahim-AI 5 лет назад
Pleas get bavk to video number 6 in this series. Navin explained the differences there
@eduardoalfredocasanovalope991
@eduardoalfredocasanovalope991 5 лет назад
List = Collections of values (same or different and they are modifyable) Set = doesn't mantain a sequence and doesn't support dupplicates
@arunbisoyi
@arunbisoyi 5 лет назад
if you compare this with JS, it will be easy to understand .
@chchiru2322
@chchiru2322 3 года назад
Better understanding tutorial 👍👍 I have ever seen in youtube
@gamersection7469
@gamersection7469 5 лет назад
Hello sir, your teaching is very nice and im new to python and i am sincerly able to learn from you..and i hope u keep teaching like this and make more videos of this language :)
@rpadeveloperblueprism5685
@rpadeveloperblueprism5685 5 лет назад
Quiz: How to access the help docs in Python? Ans: Thru the function help() without any arguments, then the help console will open.
@jd1015
@jd1015 4 года назад
help()
@arshtone7036
@arshtone7036 4 года назад
also help(OBJECT)
@smanobala3463
@smanobala3463 4 года назад
We need to put it within quotation [single or double] like help('LISTS')
@atulupadhyay185
@atulupadhyay185 4 года назад
why we didn't use list[range(10)] as we should use sq bracket in case of list it gave error
@thiyageshkanna
@thiyageshkanna 4 года назад
Tuple, set, list has different brackets.. each bracket defines their corresponding data type...
@orkhangasimov8428
@orkhangasimov8428 4 года назад
You use sq brackets when defining lists, - however, the word "list" here does not mean that you are defining a list. Here it's the name of a function that converts a given value to a list - and you pass values to a function using normal brackets.
@prasadwants
@prasadwants 6 лет назад
The efforts that you are putting to make this video is awesome...keep going...
@sarangvirulkar6728
@sarangvirulkar6728 5 лет назад
Nicely taught by Navin ,better to understand
@bhaktipatel2308
@bhaktipatel2308 6 лет назад
write help() and press enter key
@saikushalmandala6438
@saikushalmandala6438 5 лет назад
hi bhakti
@PrakashPatkinanded
@PrakashPatkinanded 5 лет назад
Are u a developer in any company
@II_xD_II
@II_xD_II 5 лет назад
coz of you this video have 22 dislikes -_-
@bhaktikhanpara4940
@bhaktikhanpara4940 5 лет назад
@@PrakashPatkinanded no
@harshakotta1401
@harshakotta1401 4 года назад
when am using list(range(10)) showing TypeError: 'list' object is not callable
@dilkashgazala831
@dilkashgazala831 4 года назад
harsha kotta Yes same thing
@AbhishekTiwari-nw5sq
@AbhishekTiwari-nw5sq 4 года назад
@@dilkashgazala831 you both may defined list earlier. First run quit() then again run it and it will run
@nxbil2397
@nxbil2397 4 года назад
Bro,L in list word should be Capital.Glad for help😊
@adosalehalkhali7211
@adosalehalkhali7211 4 года назад
thanx for your huge effort and really do appreciate the way you explain. although the best ever python tutorial ive never crossed, you did give me the hope to study programming language . in fact if you drop exercises at the end of the course might be great. if does anybody ready to help me study python language always welcome, seriously id like to learn this programming.
@physicsforallparvathamsati3936
@physicsforallparvathamsati3936 2 года назад
Your accent and teaching skills are excellent. U r teaching is simply superb. Iam a teacher. I love u r body language and confidence of u r teaching abilities 🙏🙏🙏🙏
@shujjadali4738
@shujjadali4738 5 лет назад
sir ,should i make notes of your videos?
@pratikshashirsat8070
@pratikshashirsat8070 5 лет назад
Obvious
@MadhuriLeela
@MadhuriLeela 2 месяца назад
Are you Telugu sir
@kancharlakarthik7788
@kancharlakarthik7788 Месяц назад
May be
@sonufazi8977
@sonufazi8977 20 дней назад
Yeah
@Yuki____2004_
@Yuki____2004_ 5 дней назад
He is Saitama
@manjushivnani2530
@manjushivnani2530 3 года назад
Sailing smoothly so far with captain Navin. I am in eight and I am learning Python from you.😘
@zeroandone814
@zeroandone814 2 года назад
Ur teaching is Matchless, very helpful. Deep knowledge
@ajaysundar5500
@ajaysundar5500 4 года назад
Quiz: initially we need to create a environment for that particular path. Then only python will enable. we can use help function to list out all commands. if we need particular command like LIST function. we should type help['LIST'].
@rohithkallagunta1159
@rohithkallagunta1159 4 года назад
List(range(2,10,2)= even How it in prime numbers
@chetanreddy4016
@chetanreddy4016 2 года назад
Superb sir what a teaching .... u had a good teaching skills sir
@tymothylim6550
@tymothylim6550 3 года назад
Thank you very much for this video! It was very clear and helpful for me :)
@navneetkaurpopli2766
@navneetkaurpopli2766 4 года назад
Wonderfully explained and in a fun manner. Great going. Thanks
@varunjha7731
@varunjha7731 6 лет назад
Thank you Sir !! Great Python Series .
@rahulverma1457
@rahulverma1457 3 года назад
i love your cocncept clearing session sir i m a student of great learning and here i can clear my concept often more clearly thanks@telusko
@mohitbelagal4155
@mohitbelagal4155 2 года назад
I am realizing now that Telusko in telugu means 'Get to Know'. Great name for a channel : )
@nnamdiiloabachie4469
@nnamdiiloabachie4469 4 года назад
You are very good in teaching. I really appreciate you
@nairunni60
@nairunni60 26 дней назад
Revisiting the lectures after a long gap. Great lectures as usual
@menatoorus5696
@menatoorus5696 5 лет назад
This is best course about python I’ve ever seen. You are a great teacher, a Guru.
@dragon_claws12
@dragon_claws12 2 месяца назад
Thank you sir for your free sessions of python . It symbolizes that there are good people on earth who gives knowledge in exchange of time not money
@AyeshaShaikh-ei7zi
@AyeshaShaikh-ei7zi 3 года назад
Very very very well thought..sir awesome level of explaining superb ...respect to u
@gayatripareek1345
@gayatripareek1345 4 года назад
I loved you videos .. im trying to learn python from a long time but your videos are the best.❤
@vish_veda
@vish_veda 2 года назад
It's really very helpful ...thank u so much.... keep doing this type of work.. simply great 👍
@Ok-ed9cx
@Ok-ed9cx 4 года назад
Reddy gaaru, "Telusko" ante emo ankunna kaani, me way of teaching, speedness in explaining anni balancing ga unnai, me valla PYTHON nerchukuntunna.Thanks reddy gaaru
@sreejareddygummi4900
@sreejareddygummi4900 4 года назад
It
@utlaprashant8422
@utlaprashant8422 2 года назад
Just want to let you know sir that this course is really worthy ❤❤❤. Chaala Worthy😊
@528hemanth5
@528hemanth5 2 года назад
U r explained in vy simple way reall u r super bro tquu 🤩🤩
@physicsforallparvathamsati3936
@physicsforallparvathamsati3936 2 года назад
Python I watch more than 20 videos. But u r OUTSTANDING bro 🙏🙏🙏
@salmashaheen5586
@salmashaheen5586 4 года назад
Thanks a lot for the tutorials !!! Really helpful
@rathodkirankumar3864
@rathodkirankumar3864 Год назад
who is enjoying in 2022? Honestly thank you so much sir being consistency. meanwhile you got a new subscriber, @Telusko!! inka teluskovadaniki chala undhi sir. 😂
@harshpreetsingh9755
@harshpreetsingh9755 4 года назад
Best teaching ever
@priyanshirautela10
@priyanshirautela10 3 года назад
Love watching your videos... 🙏 They are very helpful.. Thnx..
@horrorfactory770
@horrorfactory770 7 месяцев назад
Wow sir , it is so easy and fun to learn from you. Your energy, vibe and way of teaching is so amazing, easy and to the point. Thank you so much and keep teaching.
Далее
Python lists, sets, and tuples explained 🍍
15:06
Просмотров 243 тыс.
🎙️А не СПЕТЬ ли мне ПЕСНЮ?
3:12:39
ЛУЧШИЙ ПОДАРОК  @mozabrick #shorts
00:40
Просмотров 1,1 млн
Epic Reactions 😂
00:33
Просмотров 2,7 млн
Please Master These 10 Python Functions…
22:17
Просмотров 82 тыс.
Dictionary in Python
12:24
Просмотров 1,3 млн
DATA TYPES IN PYTHON | Simplest Introduction
5:29
Просмотров 194 тыс.
Data Types in Python | Python for Beginners
21:58
Просмотров 96 тыс.
25 nooby Python habits you need to ditch
9:12
Просмотров 1,7 млн
Игровой Комп с Авито за 4500р
1:00
iPhone socket cleaning #Fixit
0:30
Просмотров 6 млн