Got a question on the topic? Please share it in the comment section below and our experts will answer it for you. For Edureka Python Course curriculum, Visit our Website: bit.ly/2OpzQWw Use code "KZbin20" to get Flat 20% off on this training.
@radhikapatil80036 жыл бұрын
Send me the link of next part of the vedio
@kushalchukanatti6 жыл бұрын
edureka! I loved ur teaching sir but please can u reexplain the break n continue statement s
@manojkumarsubudhi35276 жыл бұрын
edureka!
@joyjeetchowdhury6 жыл бұрын
Dear Edureka, This was my first Python tutorial, thank a lot for explaining to a beginner with such an ease. I Thank you for that. One program in the end around 1:39:00 , the Fibonacci sequence, allow me to produce the correct program for it. ############ def fibo(n): a=0 b=1 for x in range(n): print(a) c=a+b a=b b=c return a num=int(input("Enter the value of n:")) print(fibo(num)) ############ i thank you again to provide it for the General public. Best Regards, Joy
@mkunltd3 жыл бұрын
Very good video...beeds to be updated to newer version
@gaurijha99995 жыл бұрын
Neel sir.. you are best...i m really enjoying.python...
@sumathyvenkatesh1535 Жыл бұрын
Thank you for your session. It was an Excellent One. Thanks to Edureka.
@edurekaIN Жыл бұрын
You're Welcome 😊 Glad it was helpful!! Keep learning with us..
@cliveyoung63346 жыл бұрын
At long last I am getting to grips with Python thanks to this tutorial .
@edurekaIN6 жыл бұрын
Hey Clive, we are happy to help. We have a whole bunch of tutorials on Python on our channel that you will definitely find interesting, give it a look and let us know if you found it helpful. Thanks :)
@chakravarthyyekkirala53526 жыл бұрын
Very detailed!! Great job 👍
@edurekaIN6 жыл бұрын
Hey Chakravarthy, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@naumananwar84416 жыл бұрын
Really salute your teaching............. I never seen like u
@zoe-mv5vk4 жыл бұрын
great job sir
@anushkagarg48435 жыл бұрын
Make me understand python properly and it help me a lot in my practical also
@suryaasurya23507 жыл бұрын
trainer was brilliant.the way he explaining just simply outstanding.i learned minimum basics about python.thank you
@edurekaIN7 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@tilahun6414 жыл бұрын
Namaste,Namaste..This is awesome video, Thanks a lot !!
@sagart78427 жыл бұрын
I can't deny the fact that you are one of the best teacher I came across this youtube channel. I would like to point out that the logic you used to print fibonacci series is wrong because it is not giving fibonacci series but it is giving some what like this 1,2,4,8,16,32,64,128,256,512,1024.....n Its because of you, I tried coding it by myself the correct code would look like: #fibonacci function def fibo( n): if(n == 1):#don't forget semi-colon return 0 if(n==2): return 1 return(fibo(n-1)+fibo(n-2)) n=int(input("enter the value of n")) for i in range(1,n+1,1): #don't forget semi-colon result=fibo(i) print(result) thank you. I can really see my improvement.WATCHING YOUR VIDEOS TO LEARN MORE.
@KRaghavendar6 жыл бұрын
Something like this would also work def fibo(n): a=0 b=0 c=1 print(a, ' ') # prints 1 for i in range(n): a=b b=c c=a+b print(a, ' ') # prints 1 return b num=int(input('Enter the number:')) print(fibo(num))
@Prince-fz6yo5 жыл бұрын
hii, i modified sir's code..he has missed just one variable. def fibo(n): c=0 a=0 b=1 for x in range(n): a=b b=c c=a+b print(c,' ') return c num=int(input("enter the value of n:")) print(fibonacci(num))
@pragatimehta67156 жыл бұрын
Really good tutorial. Very crisp and clear. Good job.
@edurekaIN6 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@arvindsingh82995 жыл бұрын
this is basic of python very clear
@gadhirajupraveenvarma97537 жыл бұрын
thanku soo much.i have understand clearly
@pythonpraveen32327 жыл бұрын
wonderful video for learning in phython
@sankarsan7 жыл бұрын
Very nice video. Thanks a lot.
@edurekaIN7 жыл бұрын
Thank you for watching our videos and appreciating our work. Do subscribe to our channel and stay connected with us. Cheers :)
@hassanrajaazad9046 жыл бұрын
It is really help to those people who are very new to Python
@edurekaIN6 жыл бұрын
Hey Hassan, we are delighted you think that way! It really means a lot to us. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
@mrajitms5 жыл бұрын
Short and very efficient way to explaining python programming.
@Ash-fo4uc6 жыл бұрын
Thank you sir ..that was really the best video for beginners in python..and you are an excellent trainer
@edurekaIN6 жыл бұрын
Hey Asha, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@karthikapillai7 жыл бұрын
Clear explanation and neat slides. Thank you, Neeraj.
@edurekaIN7 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@karthikapillai7 жыл бұрын
Do you have a continuation video? Which one should I see to learn more about Python? Was quite confused looking at edureka channel!
@edurekaIN6 жыл бұрын
Hey Karthikapillai, you can refer to this playlist: kzbin.info/www/bejne/hGHPqZmfoayZl80 Hope this helps :)
@amitsarrah7 жыл бұрын
This Video was awesome for a beginner like me to learn python.Thanks Neeraj.
@ritikakapoor81565 жыл бұрын
Very clear explanation by the instructor. Thank you
@narayanasrikarbonda46347 жыл бұрын
excellent tutorial.Thank you
@balasubramanik33786 жыл бұрын
Phenomenal narration. Would definitely work for any beginners. Thank you so much.
@edurekaIN6 жыл бұрын
Hey Bala, glad you loved the video. Do subscribe and hit the bell icon to never miss an update from edureka in the future. Thanks!
@marisoundarya56156 жыл бұрын
Super bro,its very useful...
@edurekaIN6 жыл бұрын
Hey Mari, we are glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
@shanmukhkp61125 жыл бұрын
very useful video for beginners
@mrsmith10084 жыл бұрын
Good teaching approach!
@kalyankrishna28107 жыл бұрын
@1:02:20 In dictionaries, pop function returns the popped out value based the key passed and not the remaining keys and their values.
@edurekaIN6 жыл бұрын
Hey Kalyan, yeah that's the point of a dictionary that you get returned values according to key-value pairs. Hope this helps :)
@prakashk23454 жыл бұрын
Thanks a lot. Excellent tutorial.
@nazinformative74254 жыл бұрын
thanks a lot very informative lecture
@romeetzalani17636 жыл бұрын
Really Great trainer ..
@edurekaIN6 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@surikoushmitha5667 жыл бұрын
the trainer Neeraj is really very awesome.He is explaining everything very clearly.The session was really awesome
@edurekaIN7 жыл бұрын
Thank you for the appreciation, Koushmitha! Your words re our motivation. Subscribe, like and share our videos to keep learning and keep growing. Thanks :)
@WiredWisdom9302 жыл бұрын
THANK YOU !!! SO MUCH!!!
@Manojkumar-gr1dn6 жыл бұрын
dear sir you are explaining in a very good manner and especially the video presentation was very good (the step by step process) I understand in a better way...I really thank you and your team members for giving this platform to study python...thank you so much sir
@edurekaIN6 жыл бұрын
Hey Manoj, thanks for the compliment. We are glad you loved the video. Do subscribe and stay tuned for more updates. Cheers!
@codixian6 жыл бұрын
The best tutorial on internet, thanks
@edurekaIN6 жыл бұрын
Hey Ravi, thank you for watching our video. You just made our day! Keep watching and keep learning :)
@kamranshafiq31066 жыл бұрын
Very Informative and incredibly helpful for novice as well professionals. I got plenty of guidance in the areas . Woderful
@edurekaIN6 жыл бұрын
Hey Kamran, thank you for appreciating our work. We try to maintain a tone in our tutorials such that professionals and beginners both can understand concepts well. Subscribe and stay connected with us, cheers :)
@anirudhreddybasani35556 жыл бұрын
WooW...you just almost told all the basics of python within a span of watching a movie..and that was amazing and so informative...keep up the good job and make sure you upload these kind of videos on other concepts too..
@edurekaIN6 жыл бұрын
Hey Anirudh, thank you for appreciating our work. We are glad to have helped. D subscribe and stay connected with us. Cheers :)
@mkgvip7 жыл бұрын
Very easy to understand with all the clarity. Thanks.
@TheSoudamini3 жыл бұрын
helpful,thanks
@VijayKumar-qs1rg7 жыл бұрын
Nice session, waiting for more videos
@edurekaIN7 жыл бұрын
Thank you for watching our videos. Do subscribe to our youtube channel and stay updated with our content. Cheers :)
@thebrijgroup5325 жыл бұрын
Thank you so much after watching thos video i can learn python
@edurekaIN5 жыл бұрын
Thanks for watching the video! We are glad that our video was of great help to you. Cheers!
@dakotaborden92726 жыл бұрын
Hey thanks mate. Your video is well descriptive. I’m self teaching myself and your video helped me a lot
@edurekaIN6 жыл бұрын
Hey Dakota Borden, thank you for watching our video, we are glad that you liked it. Good luck with your learning goals, let us know if you need any help. Meanwhile, check out our Python course here: www.edureka.co/python Hope this helps : )
@bharatarora6406 жыл бұрын
Awesome experience ✌👌
@edurekaIN6 жыл бұрын
Hey Bharat, thank you for watching our video. We are glad to know that you liked our tutorial. Do subscribe and stay connected with us. Cheers :)
@heberhart613 жыл бұрын
I have been looking for a tutorial that I connect with and until now this has been by far the easiest to follow and understand and approaching the methodology, Thanks You!!
@edurekaIN3 жыл бұрын
We are super happy that Edureka is helping you learn better. Your support means a lot to us and it motivated us to create even better learning content and courses experience for you . Do subscribe the channel for more updates : ) Hit the bell icon to never miss an update from our channel : )
@surajkalyankar33507 жыл бұрын
wow simply superb sir there is no words to describe about your way of teaching.i am over the moon now. go ahead.
@shraddhachaudhary32856 жыл бұрын
It's really helpful..
@edurekaIN6 жыл бұрын
Hey Shraddha, thank you for watching our video. We are glad that you liked our content. Do subscribe and stay connected with us. Cheers :)
@m4maaz7 жыл бұрын
It was really so much help full and encouraging for a beginner like me. Thanks
@edurekaIN7 жыл бұрын
Hey Azam, thanks for the wonderful feedback! We're glad we could be of help. We will be coming up with more videos. Do subscribe to stay posted. You can also access our complete training here: www.edureka.co/python Hope this helps. Cheers!
@Snehakapse7 жыл бұрын
Started today and hoping will swich job to data science with self project , thank u sir for free tutorial it will help like us people who cant afford fees
@srikanthambaldhage22686 жыл бұрын
Great & excellent explanation
@edurekaIN6 жыл бұрын
Hey Sai, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers
@vinitpair8hr6 жыл бұрын
Correct code for the Fibonacci Series problem: def fibo(n): a=0 b=1 for x in range(n): c=a+b print(c,' ') a=b b=c return b num=int(input("Enter the value of n:")) print(fibo(num))
@edurekaIN6 жыл бұрын
Hey Vinit, sorry for the delay. "def fibo(n): a=0 b=1 print(a) print(b) for x in range(0, n-2): temp = a a= b b = b+temp print (b)" Hope this helps!
@morgansippel20575 жыл бұрын
this sounds like some of the best novice programming video tutorials on youtube
@edurekaIN5 жыл бұрын
Thanks for the compliment Morgan! We are glad you loved the video. 😊
@himanshudomadiya99446 жыл бұрын
Best Python Tutorial Sir..........
@edurekaIN6 жыл бұрын
Hey Himanshu, glad you loved the video. Do subscribe and hit the bell icon to never miss an update from us in the future. Cheers!
@technosync2744 жыл бұрын
thanks sir. you have put a lot in one sir. very helpful
@sohilluhar87227 жыл бұрын
Very helpful.One of the best video to understand and learning for python,Thanks a Lot!
@edurekaIN7 жыл бұрын
+Sky Andreson, thanks for the wonderful feedback! We're glad you found our tutorial useful. Here's another video that we thought you might like: kzbin.info/www/bejne/b2m8loSmoraYfpo. You can also check out our complete training here: www.edureka.co/python. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@sohilluhar87227 жыл бұрын
aLREADY dONE
@nirajsah57586 жыл бұрын
Very well explained
@srinadhk80717 жыл бұрын
the best videos i ever saw. thank you soo much.
@edurekaIN7 жыл бұрын
Thank you, Chiranjeevi! Do check out our website and browse through the certification coaching we provide : wwww..edureka.co Hope this helps you too.
@NainshriTodariaNT7 жыл бұрын
Nice video
@r-algoengineeringbigdata58635 жыл бұрын
Very well done video!
@surikoushmitha5667 жыл бұрын
thank you Neeraj. This session is really very useful for me.Now i am able to do some coding.
@kishorec59177 жыл бұрын
awesome video (very use full to beginners) i want the professional training please
@Dylondogg6 жыл бұрын
Very good way of explaination
@92705658027 жыл бұрын
nice and helpful vedio
@sameenchinthana91895 жыл бұрын
It was an amazing session for absolute beginners to clear fundamentals and please be kind enough to recheck about examples that you have given related with ( for loop) . I believe there are some misguided points in it to be resettled.
@edurekaIN5 жыл бұрын
Thanks for the appreciation, Sameen! You can have a look at this link to understand it more clearly. bit.ly/2m9Garr
@pawanmaheshwari58877 жыл бұрын
very best tutorial for begineer , what an explanation sir ."jakkakks" bole to ekdum mast tutorial sir thanku sir
@edurekaIN7 жыл бұрын
Hey Pawan, thank you for appreciating our work. Do subscribe and stay connected with us. Cheers :)
@shubhkapoor81196 жыл бұрын
Sir i was watvhing your tutorials and let me tell you they are good
@edurekaIN6 жыл бұрын
Hey Shubh, thank you for watching our video. We are glad that you liked our content. Do subscribe and stay connected with us. Cheers :)
@kevodhiz6 жыл бұрын
A perfect presentation. Thank you so much sir.
@edurekaIN6 жыл бұрын
Hey Kev, thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@marwanhouari23954 жыл бұрын
an excellent presentation Thank you - very well done
@ukab253az7 жыл бұрын
amazing video...
@bekelekasahun99126 жыл бұрын
Hi,thanks , i got the way that I need
@edurekaIN6 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@pradeepnagaraj73475 жыл бұрын
Neel, Excellent explanation, Thanks!!
@JaswinderSingh-cs7rq7 жыл бұрын
thanks sir , it is very helpful for me
@edurekaIN7 жыл бұрын
Hey Jaswinder, thanks for checking out our tutorial! We're glad you found it useful. Here's another video that we thought you might like: kzbin.info/www/bejne/b2m8loSmoraYfpo. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@Ashfaqshaikh266 жыл бұрын
really awesome edurekha
@edurekaIN6 жыл бұрын
Thank you for watching our video. Do subscribe, like and share to stay connected with us. Cheers :)
@ashoksonis7 жыл бұрын
Good training on python operators, assignments, etc... easier to understand and well explained with examples
@edurekaIN7 жыл бұрын
Hey Ashok, thanks for the wonderful feedback! Here's another video that we thought you might like: kzbin.info/www/bejne/b2m8loSmoraYfpo Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@karlapudimurali95887 жыл бұрын
Excellent video, covered all the required basic stuff of python..Thanks alot
@edurekaIN7 жыл бұрын
Hey Murali, thanks for the wonderful feedback! We're glad you liked our tutorial. :) Do subscribe to our channel to stay posted on our upcoming Python videos. Cheers!
@mohammedraja167 жыл бұрын
a very good tutorial for beginners.. especially for someone new to programmin ..surely the best I came across! just an add-on could be to include a starter session(5 minutes) on how to use pycharm... It tool a while for me to figure out the same !
@edurekaIN7 жыл бұрын
Hey Mohammed, thanks for checking out our tutorial! We're glad you found it useful. I would suggest you to go through this video as well, here our instructor has introduced pycharm in the beginning: kzbin.info/www/bejne/fnnKp61nadaZaJo Hope this helps. Cheers!
@bhoomeendra7 жыл бұрын
so far the best tutorial i have seen on python thanks for uploading such awesome content i would recommend this tutorials to my friends
@edurekaIN7 жыл бұрын
Hey Bhoomeendra, that's great! Wewould love to have more dedicated learners on our channel. Do browse through our playlist on KZbin for Python and let us know how you liked it. Cheers :)
@AmandeepKaur-dr4mm7 жыл бұрын
smart tutorial !!
@edurekaIN7 жыл бұрын
Hey Amandeep, thank you for watching our videos and appreciating our work. Do subscribe to our channel and stay connected with us. Cheers :)
@pvrtheatre7 жыл бұрын
Very effective tutorials with very simple to understand examples. Thank you
@soumadip_banerjee7 жыл бұрын
Okayyy.. M starting Python with u.. Wish me luck!!! I subscribed!!! ;)
@edurekaIN7 жыл бұрын
+Skyy Banerjee, that's awesome! :) Good luck.
@rahulbhakte27477 жыл бұрын
Since I've just started watching this video and found it interactive, I'm very excited to learn from you sir.
@edurekaIN7 жыл бұрын
Hey Rahul, we are delighted to have excited learners like you on our channel. Check out our playlist for Python tutorials here: ow.ly/bnJ130h8UOu Hope this helps :)
@sanjeevcse0667 жыл бұрын
Thanks for Nice and simplified video with hands on. Great Presentation didnt faced not even single mistake while doing practicals for the same. looking for such more videos...
@edurekaIN7 жыл бұрын
Hey Sanjeev, thanks for the wonderful feedback! We're glad we could help. Here's another video that we thought you might like: kzbin.info/www/bejne/b2m8loSmoraYfpo Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@srikanthambaldhage22686 жыл бұрын
Edureka is really great for tutorials
@edurekaIN6 жыл бұрын
Hey Sai, thank you for the constant appreciation. Learners like you make it worth our while to upload tutorials on such topics. Cheers :)
@susandeep7 жыл бұрын
The Trainer is very very crisp and clear on the questions and topic...
@nikhilkumarreddy55816 жыл бұрын
yeah
@mere_angane_me6 жыл бұрын
sir the video is very good,even being from a non IT branch i learned a lot.Sir i am in a fix that there are 72 videos in total and of AI and ML also,it would be greatfull if you can tell me what videos to download further to have a good knowledge in python as i m a beginner.
@edurekaIN6 жыл бұрын
Hey Shivam, our playlists are enough to help you get started and understand the basics of Python. Once you are done with this, we'd recommend to check out our Python course: www.edureka.co/python This comes with live instructor led sessions which are taken up online.
@shivaraja3986 жыл бұрын
its really a informative and clear for beginners
@richitheofficial77117 жыл бұрын
This is was really helpful..Thanks sir
@ravichennuri61114 жыл бұрын
Very Good Session
@pythonpraveen32327 жыл бұрын
Thanks for your E - lecturer and i want more video regarding in phython program
@edurekaIN7 жыл бұрын
Hey Praveen, check out this playlist to find our videos on Python: kzbin.info/www/bejne/hGHPqZmfoayZl80
@pythonpraveen32327 жыл бұрын
edureka! Thanks lot
@kalyanipuvvada82087 жыл бұрын
Hi. The session was awesome. I am new to python. You are explaining in a simple and easily understandable way with examples. But I have question. For Immutable datatype objects we can't change right? but we are adding new values by concatenating then how they are immutable while changing the objects. Thanks, kalyani
@edurekaIN6 жыл бұрын
Hey Kalyani, It's OK to add elements to a tuple (sort of). Tuples are still immutable, you can't edit them, but you can make new ones that look like you appended by putting multiple tuples together. tuple(list(a)+b) is stupid, don't do that. Just do tuple1 + tuple2, because Python doesn't suck. So suppose you had a list someList = ['1','2','3','4','5'] and a tupple sumTup= () so just run a loop and add them ---- for i in someList: sumTup += (i, ) Hope this helps :)
@kalyanipuvvada82086 жыл бұрын
Yeah. Thanks for your reply :)
@subhangikasture58916 жыл бұрын
I should really appreciate the ppt slides and teaching ..thank you so much
@edurekaIN6 жыл бұрын
Hey Shubhangi, thank you for watching our video. We are glad that you found it useful. Do subscribe to us and stay connected. Cheers :)
@engineeraj15 жыл бұрын
it was very good
@saitarun65625 жыл бұрын
excellent bro
@bhavyasriram21237 жыл бұрын
thank u so much sir its really awesome
@techgalary7 жыл бұрын
Thanks Neeraj. Very nice explanation
@agaptinfernandez23005 жыл бұрын
Content quality is excellent, delivery of presentation is astoundingly confident, clear and pace is consistent. Well structured and the command is magnificent..
@edurekaIN5 жыл бұрын
Thanks for the compliment! We are glad you loved the video. Do subscribe to the channel and hit the bell icon to never miss an update from us in the future. Cheers!
@SakshatShinde7 жыл бұрын
This is really useful, thank you so much!
@edurekaIN7 жыл бұрын
Thank you for appreciating our work. Do subscribe, like and share to stay connected with us. Cheers :)
@lonasadas29717 жыл бұрын
It helped me to pass my test
@edurekaIN7 жыл бұрын
+lonasa das, that's awesome! :) We're very glad we could be of help. Do subscribe to our channel to stay posted on upcoming tutorials. Cheers!
@mateuszkw.16797 жыл бұрын
Good video! Greetings from Poland :)
@edurekaIN7 жыл бұрын
+Mateusz Kwiecien, greetings! :) We're glad you found our tutorial useful. Here's another video that we thought you might like: kzbin.info/www/bejne/pHuuqYqYhpadl9k. Do subscribe to our channel to stay posted on upcoming videos. Cheers!
@somarajuv5476 жыл бұрын
An excellent video of python which we can learn all basics. and thanks edureka! for helping me in passing of my semester exam and u have uploaded any other programming videos .