#4 Python Tutorial for Beginners | Variables in Python

Sdílet
Vložit
  • čas přidán 1. 07. 2018
  • 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
    Udemy Courses:
    Java:- bit.ly/JavaUdemyTelusko
    Spring:- bit.ly/SpringUdemyTelusko
    Java For Programmers:- bit.ly/javaProgrammers
    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 variable in python:
    Variable: It is a container where we can put our value
    e.g
    x=2 #here x is variable and 2 is value
    x+3
    5
    y=3
    Note:If I want to use output of previous operation so we use underscore (_)
    _+y
    8 # previous output 5 and y is 3
    Use String as a variable:
    -- Strings in python are surrounded by either single quotation marks, or double quotation marks.
    -- e.g "shiva" ,'shiva'
    Assign String to a Variable:
    -- Assigning a string to a variable is done with the variable name followed by an equal sign and the string:
    name='shiva'
    name
    shiva
    Slicing String:
    we can return a range of characters by using the slice syntax.
    Specify the start index and the end index, separated by a colon, to return a part of the string.
    -- Get the characters from position 2 to position 5 (not included):
    name='youtube'
    name[2:5]
    'utu'
    Slice From the Start:
    name[:5] #from starting to index 5 (exclude)
    'youtu'
    Slice To the End:
    name[2:] #from 2nd index to end
    'utube'
    Negative Indexing:
    0 1 2 3 4 5 6 #positive indexing
    y o u t u b e
    -7 -6 -5 -4 -3 -2 -1 #Negative indexing
    name[-1]
    'e'
    name[:-1]
    'youtub'
    name[:]
    'youtube'
    name [:0]
    ''
    name[-5:-2]
    'utu'
    Concatenate String:
    name+ ' telusko'
    'youtube telusko'
    Github :- github.com/navinreddy20/Python-
    Java:- bit.ly/JavaUdemyTelusko
    Spring:- bit.ly/SpringUdemyTelusko
    More Learning :
    Java :- bit.ly/3x6rr0N
    Python :- bit.ly/3GRc7JX
    Django :- bit.ly/3MmoJK6
    JavaScript :- bit.ly/3tiAlHo
    Node JS :- bit.ly/3GT4liq
    Rest Api :-bit.ly/3MjhZwt
    Servlet :- bit.ly/3Q7eA7k
    Spring Framework :- bit.ly/3xi7buh
    Design Patterns in Java :- bit.ly/3MocXiq
    Docker :- bit.ly/3xjWzLA
    Blockchain Tutorial :- bit.ly/3NSbOkc
    Corda Tutorial:- bit.ly/3thbUKa
    Hyperledger Fabric :- bit.ly/38RZCRB
    NoSQL Tutorial :- bit.ly/3aJpRuc
    Mysql Tutorial :- bit.ly/3thpr4L
    Data Structures using Java :- bit.ly/3MuJa7S
    Git Tutorial :- bit.ly/3NXyCPu
    Donation:
    PayPal Id : navinreddy20
    www.telusko.com
  • Věda a technologie

Komentáře • 3,2K

  • @Telusko
    @Telusko  Před 11 měsíci +113

    Navin Reddy has 11 characters (including space between two words)

  • @motheakanksha6082
    @motheakanksha6082 Před 3 lety +1317

    Making such a effort without expecting anything and explaining with lots of clarity is really awesome,and huge respect to you

  • @ajitsakri9888
    @ajitsakri9888 Před 4 lety +306

    1. print(r '
    ') means print as it is.
    2. _ (underscore represents) result of last.
    3. name[-1] last digit of array
    4. name[-2] last but digit of array
    5. name[0:2] if name = ajit it will print 'aj'
    6. name[0:3] if name = ajit it will print 'aji'
    7. len(name) it will print 4(length of the ajit)
    8. if a = ajit a[1:3] - when you print this it will give "ji" not "jit" because indexing excludes the last letter.

    • @amankumar-kw3xs
      @amankumar-kw3xs Před 3 lety +8

      good going , summary of the session

    • @Munchkie
      @Munchkie Před 3 lety +9

      yes, but let them know that when indexing the last letter gets excluded. ex: a = ajit a[1:3] - when you print this it will give ji not jit because indexing excludes the last letter.

    • @ajitsakri9888
      @ajitsakri9888 Před 3 lety +5

      @@Munchkie ok Got it.

    • @omkarsaple1763
      @omkarsaple1763 Před 3 lety +3

      Thanks for the nots ❤️

    • @Munchkie
      @Munchkie Před 3 lety +3

      I am an idiot. You already said this.

  • @Nikunjyadav4693
    @Nikunjyadav4693 Před 2 měsíci +73

    Legends watching in 2024 😂😂😂

  • @aishwaryasrikanth5125
    @aishwaryasrikanth5125 Před 5 lety +257

    Never knew python is enjoyable this way. Thanks for it.

  • @roshnikrishna7114
    @roshnikrishna7114 Před 3 lety +334

    First time ever in my life listening carefully with full interest on one pgming language lecture...the same lecture on these topics by my faculty made me sleep so hard😝...great effort and concept is easily understandable...Thanks a lot sir.

  • @kartikjswl4
    @kartikjswl4 Před 3 lety +78

    You're a GOD'S GIFT to us!! ♥️ Couldn't imagine to learn something with such fun, thank you Navin 💯

  • @nezzylearns
    @nezzylearns Před rokem +11

    I have been studying python for about 3-4 months now. Your enthusiasm is contagious. I had so much fun learning this😁

  • @sagarthoke2472
    @sagarthoke2472 Před 4 lety +68

    Wanted to learn Python from last 2 years but unable to continue interest and now you're here 😍
    Loving the sessions

  • @sagarsonar7671
    @sagarsonar7671 Před 4 lety +206

    Print (100*respect)
    Love the way you tech nivin sir..
    Learning during corona holiday 😁

  • @predatorishi
    @predatorishi Před 3 lety +9

    most energetic teacher on CZcams.. tbh one of the best teachers I have ever seen in my life.

  • @shreyashshinde8502
    @shreyashshinde8502 Před 3 lety +5

    I never thought python so easy programming language by listening this awesome lecture...
    Thank you so much Navin Reddy Sir...

  • @chughprabhkirat4141
    @chughprabhkirat4141 Před 4 lety +24

    Output -
    Telusko
    Rocks
    Since at start of the string you've mentioned r which stands for raw string, it means that the string will be printed as it is(in a raw state) no special meanings will be considered.

  • @TheOneAndOnlyHypnotist
    @TheOneAndOnlyHypnotist Před 4 lety +77

    Just started this because I was frustated with Java courses. This is SOOOOOOOO much simpler! thank you sir!!

  • @seemasingla6292
    @seemasingla6292 Před 2 lety

    The enthusiasm with which u r teaching is great and your teaching skills is fabulous .
    Seriously lucky to have a teacher like you

  • @nimotalaiabduganiyu9290
    @nimotalaiabduganiyu9290 Před rokem +1

    This series of videos are just too easy to follow. I am elated to come across them. Thank you, Mr Navin.

  • @abhilashdevarakonda5991
    @abhilashdevarakonda5991 Před 6 lety +482

    name='navin reddy'
    respect='nosire'
    print('thank you ' +name+' '+respect[2:5])

    • @dhruvkankotiya2551
      @dhruvkankotiya2551 Před 6 lety +30

      SyntexError: invalid charactor in identifier.

    • @waniya-huzzu
      @waniya-huzzu Před 6 lety +25

      print('thank you '+name+' '+respect[2:5])
      thank you navin reddy sir
      i m not getting any error.

    • @ektasharma3494
      @ektasharma3494 Před 5 lety +7

      name='Navin Reddy'
      Honour='Nosire'
      print ("Thank you" + name + Honour [2:5])

    • @sukhchainpal83
      @sukhchainpal83 Před 5 lety +1

      it was simple to getting output

    • @sukhchainpal83
      @sukhchainpal83 Před 5 lety +5

      try this one
      name =' navin reddy'
      respect = ' nisire'
      print('hello'+name+respect)

  • @Amr-Ibrahim-AI
    @Amr-Ibrahim-AI Před 5 lety +47

    Thanks Navin for your wonderful series. Your way of explaining thse concepts is exemplary. Easy and to-the-point.
    I used to teach C lanuage 20 years ago, and I like the way you are doing this very much.
    Thanks for taking the time to simplify this. Bless you

  • @mehdidn4301
    @mehdidn4301 Před 2 lety

    for the first time I am having fun with learning programming. thank you for making this much effort for free, you have my respect.

  • @komal2286
    @komal2286 Před 3 lety +2

    Wow YOU make it sound so simple and easy. i always had inhibition about coding in "Python" and pursued it as a Rocket Science! but with the help of these videos I think I'll soon be there.. Kudos :)

  • @SuprabhTheCuriousMind
    @SuprabhTheCuriousMind Před 4 lety +4

    I have been following your tutorials from a very long time when you had 50-60k subscribers. Your content was good then and now of course.
    But the best part is you have also evolved as a creator in terms of your appearance, video quality & viewer's engagement.
    Thank you for educating us.
    Keep doing! Keep motivating (Y)

  • @bhavikakapadia2462
    @bhavikakapadia2462 Před 6 lety +21

    I am really enjoying Python series and
    also like the new video format

  • @studymaterial3284
    @studymaterial3284 Před rokem +2

    Your explanations are very easy to understand and anyone who is struggling to learn programming before can learn easily just by watching your sessions

  • @Deepakkumar-tx8eq
    @Deepakkumar-tx8eq Před rokem +2

    Thank you Navin I was really hopeless in learning python...
    But watching your video makes me feel it's a piece of cake.. thank you so much for your efforts❤

  • @rajupun-cz1bz
    @rajupun-cz1bz Před 4 lety +6

    First time I heard somebody explaining variable in such simple way.
    Regards

  • @amitsaxena6530
    @amitsaxena6530 Před 5 lety +8

    Thanks Sir...I always scared from coding despite being a computer science graduate. But your videos are awesome and very easy to comprehend. Please keep up the good work that you are doing. Thanks!

  • @codeprofessorpro
    @codeprofessorpro Před 3 lety

    Your videos great sir.
    for the first ever saw such a great tech teacher in my life. The best thing about your video lectures is that when questions come in to my mind, it clears automatically as i continue watching your video,sir .
    you are best ,sir.
    Thanks for sharing YOUR KNOWLEDGE WITH US IN such an interesting way.

  • @kumarsanjeev4497
    @kumarsanjeev4497 Před 3 lety

    Thank You... Navin Garu for teaching Python in a simpler way with more clarity.

  • @mannemsrikanth3655
    @mannemsrikanth3655 Před 5 lety +16

    Output for quiz question:
    Telusko
    Rocks
    Thank you sir for clear explanation,, after executing codes you are saying wow its working☺,that's good sir. You are changing the way of learning, keep going on navin sir. I am suggesting all my friend's to watch your channel

    • @nightmaremc24
      @nightmaremc24 Před rokem

      This answer is almost true. r before the string implies that the string has to be printed as raw string. So the correct answer would be. Telusko Rocks

  • @ankurgupta288
    @ankurgupta288 Před 4 lety +6

    Love python from a such a talented and interactive teacher sir

  • @siddhartharoy4698
    @siddhartharoy4698 Před 3 lety +1

    You are just an awesome teacher, you explain it with such a clarity and make it so easy.
    Thanks a lotttt.

  • @danyjovial1051
    @danyjovial1051 Před 11 měsíci

    Hai Bro, I am 43 yrs old and now trying to learn Python, I am impressed by the way you created these videos which are very interesting and helpful to the viewers, keep going keep roks and God Bless You...

  • @azhagianambi5024
    @azhagianambi5024 Před 4 lety +11

    Sir the way of your teaching really inspired me to learn more

  • @atulyamishra7986
    @atulyamishra7986 Před 4 lety +74

    I like his INTROs in which he's like "hello there ALIENS!!!!"

    • @dynamisarian6576
      @dynamisarian6576 Před 3 lety +5

      Right 😁😁😁😁
      But why are we aliens??just because we are learning Python!! 😅

    • @nitinchauhan365
      @nitinchauhan365 Před 3 lety +7

      @@dynamisarian6576 Plot twist: Navin Sir is from another planet.

    • @dynamisarian6576
      @dynamisarian6576 Před 3 lety +1

      @@nitinchauhan365 woww..it could be👌🏻😁

    • @mveera5441
      @mveera5441 Před 3 lety

      Alien means far from... Means either another state, country or planet. What ever it is.
      Alien means foreigner

    • @zayedhasan5541
      @zayedhasan5541 Před 3 lety +1

      @@mveera5441 very good

  • @anushagujjeti5083
    @anushagujjeti5083 Před 3 lety

    As a lecturer you are giving us ultimate.
    And really we are respectful every time when we watch your videos

  • @madhanreddy1194
    @madhanreddy1194 Před 3 lety +8

    What a energy, i got some interest to learn python now 😊😊

  • @s.sireesha5334
    @s.sireesha5334 Před 5 lety +5

    Superb explaination sir,and it is very easy to learn
    Thank you so much for making this video 👌👌👌

  • @ravithekoolguy4195
    @ravithekoolguy4195 Před 5 lety +5

    Excellent way of teaching sir 🙏,requires lot of efforts also time,this is d result of ua Hard work n patience 🙏

  • @san-cc9sc
    @san-cc9sc Před 9 měsíci +4

    You are amazing.... Ur the person making efforts without expecting anything 😊😊

  • @simarjeetvansal5525
    @simarjeetvansal5525 Před 3 lety +2

    i just love him. such a tutor needs to be in colleges

  • @azizasulthana431
    @azizasulthana431 Před 4 lety +13

    Very enjoyable teacher, teaching and class

  • @JK92007
    @JK92007 Před 6 lety +3

    Wow...Very advanced style.... Nicely explained....👍👍👌

  • @karnampyditallinaidu3436
    @karnampyditallinaidu3436 Před 3 lety +1

    Tqsm for keeping the python programs ....
    I enjoyed so much by seeing u r vedios...

  • @succeeder3044
    @succeeder3044 Před 2 lety

    wow, what an explanation, very clear and easy to understand

  • @davidyoung1352
    @davidyoung1352 Před 3 lety +21

    Navin thank you, I am new to this and I am enjoying learning python. I like the way you teach. Your explanations are thorough and you keep it very simple. I am glad I came across your channel, and I did subscribe.

  • @chupbey7814
    @chupbey7814 Před 3 lety +24

    Everytime he tells us something new he pretends like he never knew it would come out this way... and that makes him cool !

  • @solamyke-fadipe5085
    @solamyke-fadipe5085 Před 3 lety

    You really know the meaning of speed and understanding,thanks.

  • @rakhidangwal57
    @rakhidangwal57 Před rokem

    Such good lessons.. first time ever I don't have issue with focusing

  • @muhammaddanial6486
    @muhammaddanial6486 Před 5 lety +39

    feelings = " LOVE"
    expression = " Great"
    print(" Its " , {Feelings} , " to watch your tutorials & its ", {expression})

    • @byspandanan7410
      @byspandanan7410 Před 4 lety +4

      print(" Its " , feelings , " to watch your tutorials & its ", expression)
      this is correct

    • @mwendeevande3743
      @mwendeevande3743 Před 4 lety +1

      @@byspandanan7410 you both are wrong.

    • @lokeshmadiga6215
      @lokeshmadiga6215 Před 4 lety

      bro use .format while u use {}

    • @ashishkangaokar
      @ashishkangaokar Před 4 lety

      @@lokeshmadiga6215 what is correct, can you please help me printing the exact syntax?

    • @hadihabib5629
      @hadihabib5629 Před 4 lety

      @@mwendeevande3743 i think spandana nandigum is right.

  • @sarmistranayak4034
    @sarmistranayak4034 Před 4 lety +3

    I'm enjoying this class it is very easy and interesting thank you sir 😊😊

  • @tamiljokers6565
    @tamiljokers6565 Před 2 lety

    Great learning here. from Very basic. Thanks lot!

  • @AnjaliSingh-kv3vl
    @AnjaliSingh-kv3vl Před 3 lety +1

    I am really enjoying learning python just because the way you explain is simply amazing

  • @shobhitkhemka5349
    @shobhitkhemka5349 Před 4 lety +12

    Telusko
    Rocks (This is the answer of quiz)
    This is an awesome tutorial and now i am loving python!

  • @vikrantbam
    @vikrantbam Před 2 lety +5

    This is really a great course and amazingly explained. I really do appreciate your contributions and help for student community. No doubt this is really a great python series. Though this was updated in 2018 and recently there is no new update in this series. Do you have any plan to add more into Python course?

  • @rondore4258
    @rondore4258 Před rokem

    I am really understanding this now. You have a great teaching style. TY and keep up the great work!!!!

  • @user-iq9bg4vv9s
    @user-iq9bg4vv9s Před 2 lety +1

    Thank you so much for such quality content and for sharing your knowledge with millions around the world and making they dream come true. You are a great man!

  • @atharvasachan3027
    @atharvasachan3027 Před rokem +4

    much better than code with harry playlists . He is atleast starting this from start not like harry u have started his series from quiet a high level

  • @MuzicBae
    @MuzicBae Před 6 lety +26

    previously i was not in the mood to learn python, but your videos made me do so

  • @nileshgurav8401
    @nileshgurav8401 Před 2 lety

    Really looks simple when you explain things. Since coming from a non-coding background, this teaching technique method is really easy to understand.
    >>> print ('Thanks Navin')
    :)

  • @princeshetye7205
    @princeshetye7205 Před 3 lety +1

    Man ur fabulous as a coach....Im enjoying your sessions.... best part im not getting bored :)

  • @Midnightacoustician
    @Midnightacoustician Před 4 lety +10

    I am an Architect (civil), have absolutely zero programming knowledge or background, and just wanted to make the lockdown break useful.You sir, are an amazing teacher and have actually made python so much fun.Thank you for the effort.Keep up the good work.

    • @ameypande3154
      @ameypande3154 Před rokem

      Does Learning this language make any difference till now for you???

  • @damirko
    @damirko Před 6 lety +10

    Nice intro video to variables.

  • @tanushriverma7878
    @tanushriverma7878 Před rokem

    Thank you so much to provide lovely containt. I never thought that I can learn this python without having any technical background

  • @vittamanojkumar8692
    @vittamanojkumar8692 Před 3 lety

    Superb sirr by this so many members rr getting this course freely and can easily understand by u super explanation ........

  • @trilokreddy9355
    @trilokreddy9355 Před 3 lety +35

    Sir, In the quiz the output is
    'Telusko
    Rocks'

    • @darshannt4057
      @darshannt4057 Před 3 lety

      Bro i think
      Telusko
      Rocks
      Because
      indicates next line

    • @sayleesurve2708
      @sayleesurve2708 Před 3 lety +8

      @@darshannt4057 as r is mentioned it will skip the special meaning of
      so the above ans is right

    • @lalitwalekar4779
      @lalitwalekar4779 Před 3 lety

      @@sayleesurve2708 yup

    • @kaushiksai2534
      @kaushiksai2534 Před 2 lety +2

      yes correct answer 'Teisuko
      Rocks'

  • @nishapradhan2479
    @nishapradhan2479 Před 5 lety +72

    myname= 'Navin Reddy'
    len(myname)
    11
    here what i observed is even the space between Navin and Reddy is counted right so it makes 11 in total .
    Thank you so much Sir

  • @Alberta_Farmer
    @Alberta_Farmer Před rokem

    Love the quick lessons that keep building!!!

  • @dipanjanbanerjee7482
    @dipanjanbanerjee7482 Před 3 lety +1

    Hi Naven Sir, the videos are just amazing, thanks a lot sir for teaching us in such an amazing way.

  • @michaellungu5812
    @michaellungu5812 Před 4 lety +10

    This is amazing, I'm really enjoying tutorials.I am a beginner of programming, with these videos i'm sure i will become a programmer

  • @joyitasadhukhan4846
    @joyitasadhukhan4846 Před 3 lety +10

    'Telusko
    Rocks' i got this output for you last quiz in the video. and i love your teaching method the way you are explaining it s really amazing for an individual who does not have any coding background.

    • @seemalasunil
      @seemalasunil Před rokem

      Bro the commas u entered in the first and last so there is an error

  • @zrrg.z
    @zrrg.z Před 3 lety

    I saw all your video till this one and finally you made me sub.

  • @AshuSingh-rn8mt
    @AshuSingh-rn8mt Před 2 lety +2

    This is jst damnn clear.. Love the you teach and explain.. Thanks for such great efforts sir! 💫

  • @soumyau6573
    @soumyau6573 Před 5 lety +113

    Answer: Telusko
    Rocks
    Really enjoyed😃

  • @diptisinha4143
    @diptisinha4143 Před 5 lety +7

    Awesome explanation sir. Now I am very clear about Python. And it's very interesting too.

  • @settymohan6577
    @settymohan6577 Před 2 lety

    Super teaching ...super stuff ...beauty of explaining 😍

  • @runakobomani2212
    @runakobomani2212 Před 3 lety

    I cannot go without leaving comment this is the best video since I started learning python. thanks you a lot .

  • @milanbariya4914
    @milanbariya4914 Před 4 lety +156

    🤓 Quiz Answer 🤓
    Guess the Output
    print (r'Telusko
    Rocks')
    Answer : Telusko
    Rocks

    • @raziabegum9618
      @raziabegum9618 Před 4 lety +18

      That's wrong... The output shoul be: Telusko
      Rocks
      .... As that '/n ' is used for a new line...

    • @nageshmani1216
      @nageshmani1216 Před 4 lety +17

      @@raziabegum9618 nah @MILAN BARIYA is right coz that r stands for rawstring watch that 3rd video skip to the 3/4 part

    • @acharya1574
      @acharya1574 Před 4 lety +6

      @@raziabegum9618 r makes it rawstring

    • @computerlanguagebykanchandixit
      @computerlanguagebykanchandixit Před 4 lety +4

      If you want to your output as it's , please use //in stead of/......now you will get your output as it is... 😄

    • @dazykarimi8050
      @dazykarimi8050 Před 4 lety +7

      @@raziabegum9618 MILAN is right the answer is Telusko
      Rocks because its a raw string we cant change that

  • @rv2007
    @rv2007 Před 5 lety +6

    Thak u so much sir
    U gave me a goal of my LIFE

  • @shafaitislam7773
    @shafaitislam7773 Před 3 lety

    Sir you are really great. you made all the things so easy. and thanks for making these videos in English. Love from Bangladesh.

  • @shinynagrajgoud233
    @shinynagrajgoud233 Před 2 lety

    thanks sir it is very easy to understand chala baga artam ayindi sir

  • @amanbaid3497
    @amanbaid3497 Před 4 lety +9

    Ans of the quiz : Telusko
    Rocks
    Thank you so much sir for teaching python in such an easy way

  • @ohwow2074
    @ohwow2074 Před 4 lety +5

    I cant believe that i'm still learning new stuff in python after almost 2 years of working with it!!!

  • @bruceokana9526
    @bruceokana9526 Před 3 lety

    simple and clear. thanks!

  • @nil2277
    @nil2277 Před 4 lety +13

    Bro today was my exam on python and this helped a lot

    • @Sciencedoneright
      @Sciencedoneright Před 3 lety +2

      'DA CHEATING' * 100

    • @Sciencedoneright
      @Sciencedoneright Před 3 lety

      @Miss omal You won't understand :)

    • @Sciencedoneright
      @Sciencedoneright Před 3 lety

      @Miss omal ma, nothing. He did not study before the exam but he saw this video and he passed in front of his classmates. That's why it's like cheating

  • @femibabu575
    @femibabu575 Před 4 lety +5

    I love your classes sir.. so much helpful for a beginner.. thank you so much for taking time to create videos and we will support you all along

    • @Nishad_Ji_Vlog
      @Nishad_Ji_Vlog Před 4 lety

      Nice sir becouse I am beginner . Starting coding to Python.

  • @TeluguNethra
    @TeluguNethra Před rokem

    U r way of explanation is awesome. 👏👌👍Thank you Mr. Naveen

  • @swapnildeoche7680
    @swapnildeoche7680 Před 2 lety

    thanku so much sir for effort without any expecting anything....

  • @anjaliarya5326
    @anjaliarya5326 Před 4 lety +3

    Answer to the quiz question
    Telusko
    Rocks
    I know many ppl would have answered correctly but still I felt like answering because I enjoyed learning!! .Your videos have given me a sense of confidence to do programming. Thank you so much 😀💯

  • @atharvabonde9691
    @atharvabonde9691 Před 4 lety +3

    ANSWER OF THE QUIZ QUESTION IS Telusko
    Rocks
    You are a great man , THANKS FOR TEACHING Python for FREE .

  • @nikhilrajuttla3678
    @nikhilrajuttla3678 Před 3 lety

    Really you are an. Awesome teacher sir....huge respect ..... although you know everything in python. ...you teach each everything very clearly.......thank you so much sir...👍👍👍

  • @vivekadithya1272
    @vivekadithya1272 Před 10 měsíci

    Thank you sir for effective explanation of each function.

  • @shouryasharma9585
    @shouryasharma9585 Před rokem +3

    You've made python super easy....I'm loving it.
    Also do you provide notes, would be really helpful.

  • @venkatasai9326
    @venkatasai9326 Před 6 lety +10

    Telusko Rocks sir

  • @sanskrutirahane15
    @sanskrutirahane15 Před rokem

    Good teaching in short time...Awesome....

  • @SMFB29
    @SMFB29 Před 7 měsíci +2

    loving the series especially since I just started watching it ❣❣I have learned so much for just being on the 4 episode of the series, keep up the hard work!!

  • @dsraghav2882
    @dsraghav2882 Před 5 lety +4

    Hi Sir, your tutorial is very helpful .Thanks

  • @theuntoldstories8122
    @theuntoldstories8122 Před 2 lety

    Thanks for the Good work of teaching me Python programming in the simplest way possible.

  • @aadarshpathak3314
    @aadarshpathak3314 Před 3 lety

    The Best Python Tutorial one can get! Hat's off Sir..

  • @richapathak9606
    @richapathak9606 Před 5 lety +3

    Telusko
    Rocks

  • @SanjayKumar-cp5lg
    @SanjayKumar-cp5lg Před 4 lety +4

    "Oh it works"