Python Tutorial in Hindi | Learn Python in Hindi | Python Full Course in Hindi | Python Tutorial
Python is an interpreted, object-oriented, high-level programming language built with dynamic semantics. Great Learning offers Python Programming in Hindi tutorial comprising 16 chapters, including 1 python project. This course is ideal for students and professionals looking for a Python programming course from scratch.
Python for beginners: Learn like a pro by building a solid foundation on essential topics like data structures, inheritance, flow control statements in python, functions, OOPs in python and many more interesting topics. Learn python programming course in Hindi in play way method as our expert takes you on a walkthrough on the current trends in python.
Learn Python Programming quickly in Hindi, with easy to learn syntax that emphasises readability and reduces program maintenance costs.
? Topics Covered:
* Introduction – 00:00:00
* Installing Python, Python IDEs – 00:01:38
* Data Structures in Python – 00:44:57
* Tuple in Python – 0:45:06
* List in Python – 0:54:47
* Dictionary in Python – 1:04:57
* Set in Python – 1:12:49
* Flow Control Statements in Python – 01:19:04
* If Statement in Python – 01:19:04
* If Else – 01:20:25
* Looping Statement in Python – 01:30:38
* For Loop in Python – 01:38:55
* Functions in Python – 01:43:19
* Object Oriented Programming in Python – 01:58:16
* Classes in Python – 01:59:05
* Attributes & Methods in Python – 02:00:40
* Inheritance – 02:18:15
* Multiple Inheritance – 02:34:28
* Multilevel inheritance – 02:42:16
* Libraries in Python – 02:48:35
* Python NumPy – 02:50:09
* Python Pandas – 03:18:42
* Python Matplotlib – 03:49:38
Let go of the fear of learning new programming languages, and start our python crash course now that’s backed up with Python notes.
Still more doubts about the Python tutorial? Drop us your questions in the comments sections, will are here to guide you with all your concerns.
************************************************************************************
? Download the Revision Material for "Matplotlib-Python for Non-Programmers" Here:
? Download the Revision Material for "OOPs in Python" Here:
? Download the Revision Material for "Python Visualization" Here:
? Download the Revision Material for "Python Operators" Here:
************************************************************************************
? Build a successful career in Data Science and Business Analytics, To Know More follow the link:
Here is a list of our other full course videos, you can check out:
✔ Data Science Tutorial:
✔ Python for Data Science:
✔ Machine Learning with Python:
✔ Statistics for Data Science:
✔ Tableau Training for Beginners:
✔ Reinforcement Learning Tutorial:
? About Great Learning Academy:
Visit Great Learning Academy, to get access to 300+ free courses with 1000+ hours of content on Data Science, Data Analytics, Artificial Intelligence, Big Data, Cloud, Management, Cybersecurity, Software Development and many more. These are supplemented with free projects, assignments, datasets, quizzes. You can earn a certificate of completion at the end of the course for free.
? About Great Learning:
– Great Learning is an online and hybrid learning company that offers high-quality, impactful, and industry-relevant programs to working professionals like you. These programs help you master data-driven decision-making regardless of the sector or function you work in and accelerate your career in high growth areas like Data Science, Big Data Analytics, Machine Learning, Artificial Intelligence & more.
? For more interesting tutorials, don't forget to subscribe to our channel:
? For more updates on courses and tips follow us on:
-Telegram:
-Facebook: …
-LinkedIn: …
? Follow our Blog:
#pythontutorialinhindi #pythonfullcoursehindi #pythongreatlearning #greatlearning
Great Learning offers a range of extensive Data Science courses that enable candidates for diverse work professions in Data Science and other trending domains. The faculty team of the Data Science Courses comprises top academicians in Data Science along with many skilled industry practitioners from leading organizations that practice Data Science. Over 500+ Hiring Partners & 8000+ career transitions over varied domains. Know More: https://glacad.me/3xrJCwL
♥️
why not in hindi
²
25:34
Sir can’t run
iris = pd.read_csv(‘iris.csv’)
Sir make a project on Phython Language…!!
May God bless you, Brother. You made my lockdown as I learned the Python with your help.
@Great Learning Sir you are a very great person Sir really thanks a lot ?????
We’re glad that you liked the tutorial. Do subscribe to Great Learning for more such amazing content. Alternatively, you can also check out Great Learning Academy for more such free Courses with certification here: https://glacad.me/FreeCourses_1000Hours
S. Harjeet is it full course I mean from beginees to advance level
Just finished this complete tutorial. Started 4 days back. Feeling confident enough with python. Thank you so much for the great video. ?
@Great Learning
Thank
i am going to start ,here we go
koi hacker hai jo mujhe sikha sakta hai mujhe please reply me please
@Great Learning sir pizz make one video only of python for beginner
Hi @Ayushree, we are glad to know that this video has helped you. Do subscribe to check more informative videos like these and learn from them. Thank you.
Just finished it up Amazingly enjoyed throughout session it’s good only for those who all are completely new to Python, because this tutorial gives you basic awareness about Python language. If incase you are at Moderate level i would recommend you not to watch it this truly not for you.But the teaching style of this guy is genuinely Awesomeness ?. Great Job Done.
Thrilled to know that you feel this way! Thanks for the feedback, we’re glad we could help you? Make sure you subscribe to us and hit the bell icon to get notified about our amazing upcoming content.
Honestly , this was by far the best session i had ever come across . To the point and very explanatory which makes it easier to understand . Wish you all the best and really appreciate for sharing such a nice session that too for free .
Sir Bharani Akella, you have tremendous teaching skills. I really thankful to you and Great Learning Team..
I finished this tutorial and have started practice but in this i am getting error at the time of printing
Please note: I am saving the csv file in same working location, it reads few files but shows error in many file. I am unable to figure out.
Is file size matters?
We need to check any points at the time of saving file in csv??
Command what i am using is mentioned below:
xyz=pd.read_csv(‘filename.csv’) /pd.read_csv(‘filename.csv’) both tried but not working.
Please guide
Thanks in advance
Can you send us the file. We will check it on our end.
Sir I’m in standard 9th.This course is literally amazing I’m loving it .The explaination is so clear that even a third standard boy can learn this course thanks for providing such high quality content for free .salute sir
I am also in 9th standard ??
We’re glad that you liked the tutorial. Do subscribe to Great Learning for more such amazing content. Alternatively, you can also check out Great Learning Academy for more such free Courses with certification here: https://glacad.me/FreeCourses_1000Hours
The way you explained the topics with practical examples were just awesome … Thanks a lot for your session and your time …
This is an excellent tutorial on Python. Thank you Sir for explaining python very nicely. Thanks to Great learning for making it open access. I recommonded this to all.
Sir thank u so much for such a understandable tutorial, sir I have some questions 1) what is difference between global variables and local variables?
2) what is CSV file and how could I use it in pandas?
Thank u soo much for the answers sir I’m really glad to learn python from u , I want to start my career as data scientist so that I enrolled my name in a three years BSC maths,stats and data science program
Answer to your first question: Local variables are declared and can be accessed only inside the function whereas global variables can be accessed throughout the program body by all functions.
A sample code for your reference:
sum = 0; # global variable.
def add( arg1, arg2 ):
sum = arg1 + arg2; # local variable.
print (sum)
return sum;
sum( 10, 20 )
print (sum)
Answer to your second question: CSV is a comma-separated value file. It is a delimited text file that uses a comma to separate values. Each line is a record and each record consists of one or more fields, separated by commas. You can read and load the CSV file in pandas using the following function: read_csv(“file_name.csv”). We hope this answers your question:)
Really amazing explanation!! It helps me a lot for visualization in Python. Thank You so much Sir & Team.
We’re glad that we could help you Shalini. Do subscribe to Great Learning for more such amazing content.
Alternatively, you can also check out Great Learning Academy for more such free Courses with certification here: https://glacad.me/FreeCourses_1000Hours
Thank you Sir, Salute for all the team for Sharing and Giving the Confidence to non it professional that they are also able to think to learn IT languages.
Excellent Video. You deserve applause for making such a comprehensive video in hindi. Congratulations . Sir, I am a data analyst and work mostly with excel sheet and Tableau. Can you please guide me if i should learn jupyter or pycharm to use python in data analysis. Awaiting for your kind suggestion.
Yes, you can start working on Jupyter notebook for data analysis using Python. As an IDE, Jupyter Notebook and PyCharm, both are used in industry.
This is a phenomenal,comprehensive, clearly explained and to the point video for the folks who is exploring/wandering to learn python in the easiest way. Many thanks to you and great learning team who made the tough task easy.
Hi @Dheeraj, thank you for your appreciation. Your support motivates us to deliver such valuable videos. Thank you and we will be coming up with more informative videos like this. Stay tuned:)
Hi Sir, Thank you for making our life so simple. Do you have this course on Udemy or other platforms?
& | it’s not in laptop key board what is or signe
@Somnath Joshi & is Shift+7 and | is Shift+
I have completed the course and i am here to say “Thank you sir for this amazing tutorial “
I cannot express my feelings how happy I am, you guyz made learning so easy and interesting… I have shared this video with my many friends keep it up guyz
Depends on the job profile and level of role that you are applying for. Always helps to have a really strong foundation in these concepts for any programming interviews.
Sir,
You explained very well and slowly that the person who first time taking knowledge about programming they will easily understand. Excellent teaching style.
It was really a great session. You made this pandamic as “Pythonmic” for me. ? Wish you all the best Mr Akella and Great learning…. ???
Thanks for watching!? Subscribe us and hit the bell icon so that you never miss any update from us.
@Great Learning sir is this the course from beginers to advance
Literally, it was amazing learning with you sir. Being from Mechanical background I never had an interest in coding and never written a code beyond basic addition code. Now I learnt C, C++,PYTHON from you and hope this journey continues. Also there is one request that Please you upload a playlist regarding interview question asked in service based companies related to several topics asked. As being from non-IT background we are unaware of topics included in IT background and questions asked. At last I would like to thank you Bharani Akella sir and your team members for such useful knowledge you are providing us that to at free of cost.