DEV Community

Cover image for Learning Python-Basic course: Day 25, Summary of the basic course.
Aatmaj
Aatmaj

Posted on

Learning Python-Basic course: Day 25, Summary of the basic course.

So friends today is the last lecture of the basic course and today we will just summarize whatever we learnt till now.

  • Day 1 We learnt what is Python, installed Python and wrote our very first hello world program. We also understood why Python is advantageous to other languages like C and Java.

  • Day 2 We learnt about Python statement types like assignments, expressions, declarations. We learnt how comments are written and the need of indentation. We then solved a few practice programs.

  • Day 3 We covered logical, relational, assignment and arithmetic operators, saw how they work. Then we understood the if-else syntax and solved a few problems on that.

  • Day 4 We learnt the For Loop in Python, how it differed from C, and solved some questions related to it.

  • Day 5 After quickly summarizing the week's learnings, we solved some questions which are asked in technical interviews.

  • Day 6 We learnt about the while loop, checked the meaning behind while-else and solved questions related to it.

  • Day 7 We solved some more exciting questions on the for and while loop, and an coding challenge.

  • Day 8 We learnt about Unicode in Python and solved questions. We learnt the use of ord() and chr() methods. the ord method returns the unicode of the charater while chr() returns the character.

  • Day 9 After summarizing the week's learnings, we practiced everything related to it.

  • Day 10 We learnt about lists in Python, and various list functions like popping, appending, copying and much more. We then used these functions for creating a program for dynamic generation of lists.

  • Day 11 We learnt about multidimensional lists, dynamic generation of multidimensional lists and had an introduction to tuples. We learnt that tuples were non mutable lists which cannot be changed or altered in anyway after they are hardcoded.

  • Day 12 We used lists to make algorithms like bubble sorting, binary searching and sequential searching.

  • Day 13 We learnt how to implement stack in Python and summarized the week. Stacks and queues can be easily implemented in Python using lists and some cleaver use of it's inbuilt functions.

  • Day 14 we covered the try catch statements, and basic exception handling. Advanced exception handling and types of exceptions, user defined exceptions is for later.

  • Day 15 We solved some creative questions based on try catch and learnt about nesting them. We also saw one really challenging question related to try except here.

  • Day 16 We solved more questions on lists now with the added power of try except. We covered questions like fractal lists, alphabetical order of lists and reversing lists.

  • Day 17 We learnt how to implement insertion sort in Python.

  • Day 18 We learnt about dictionaries. We checked out one example which covered many inbuilt functions related to dictionaries.

  • Day 19 We practiced a few questions on dictionaries and had quite a thorough practice of dictionaries in Python. We did programs to fuse two separate lists to a single dictionary, paired out even numbers and made fancy dictionaries using for loops.

  • Day 20 We learnt about hashtables and how to create them using dictionaries. We tried out simple and chained hashtables and worked out information retrieval using them.

  • Day 21 This lecture was devoted to solving exercises related to dictionaries.

  • Day 22 We covered string methods for effects like case changing, word manipulations, etc.

  • Day 23 We leant about the string methods which are required for GUI.

  • Day 24- We finished off with string functions


    Epilogue- We all know that neither me nor you have ever seen each other. Learning in remote environment is a difficult, and teaching is perhaps even more difficult. Teaching is never a one-way process. When a teacher teaches with pattern, he/she expects that the student must respond back. Either with doubts, remarks or nods of approval.
    But friends, being remote, we cannot interact with each other. The only way we can connect is through the comments below. So I urge everyone to comment on the posts. Currently I am in doubt whether you all are understanding me or not. Should I speed up the pace or maybe explain more clearly? I am not getting any feedback from you. Any doubts, discussions, remarks or even a simple hi from you is a great source of motivation for me. So I look forward to your comments below...😊


This marks the end of the Basic module of the Learning Python Course!


Please visit the Learning Python Repository, which contains all the material for this course.


You all can ask me any doubts by forking this file and sending a pull request.

Latest comments (0)