Python eBook: Develop Programming and Problem Solving Skills with Python

Price

$ 50 $ 100 Buy now
Python eBook: Develop Programming and Problem Solving Skills with Python

About Course

Computer Programming has two main components.

  • First we understand the basic language (syntax) of the computer to communicate with it about what to do and how to do it.
  • After learning the language constructs, we need to use these to instruct computers to solve complex problems.

Majority of the text books on programming are following Knowledge-based learning approach which only focuses on teaching the syntax of programming. Even while developing the problem solving skills, a major concern of this approach remains on teaching the syntax of the language. Assignments are also designed on the same pattern.

These types of books put a strain on the students because students get overloaded with information that they will most probably never use or experience in real world problems. Since, there is very little focus on the problem solving skills; therefore, when the students are given some real world problem to solve, then it becomes very difficult for them to solve the problem. This lowers the confidence level of students as they are unable to solve a real world problem, thus the drop out ratio of the students in Computer Science is very high.

You can think of knowledge-based learning as we teach the working of all parts of a car (this is syntax of making a car) to someone and after that he/she is unable to make a complete car by joining these parts (problem solving skills).

Currently, the trend is being shifted towards Competency-based learning. In this approach, students are given a task of some real world problem at the start, and then this project is divided into smaller subtasks, and then only the related concepts of programming to solve those subtasks are taught to the students. So, along with getting the knowledge, students develop the skills to solve real world problems.

You can think of competency-based learning as we ask the students that they have to make a Car. Then this bigger task, is divided into smaller subtasks i.e., making the structure of the car, engine and brakes etc. Then the related knowledge is given to the students on how to accomplish the specific subtask. Thus, the students acquire the skills to accomplish all the subtasks and then these skills help in completing the main task.

That's exactly what our book does.

“Competency-based Approach: How to Develop Programming and Problem-Solving Skills with Python” is the bridge between theory and practice, programming syntax and problem solving skills. In the world where traditional programming textbooks drown students in a sea of theory and syntax, this book emerges as a breath of fresh air. 

With two exciting project (Business Application) you'll embark on a journey of becoming successful programmer by attaining the programming skills step by step and developing the project in the iterative manner.

Each chapter begins by equipping you with the essential knowledge, followed by a “Logic Building” section that reinforces your acquired knowledge. Then, watch your skills come to life in the “Vision to Reality” section as you iteratively enhance the business application using your newfound knowledge. As you progress, in “Challenge Yourself” section you tackle complex, real-world challenges that solidify your skills further. This book does not aim to provide complete coverage of contents and topics of Python programming language and its constructs. Instead, the book advocates a change of mindset, which teaches and makes you conscious of what you are learning, why you are learning, and how to apply it to solve real-world problems.

List of Book Chapters:

  1. Motivation to Learn Programming and Computer Science: First Program
  2. Converting Input into Output With Expressions
  3. A Gentle Introduction to Reusability - Repetition and Conditions
  4. Code Reusability with your own as well as Functions of other developers .
  5. Decision Making with Complex Conditional Statements.
  6. Repetition and Loops to solve complex problems.
  7. Lists: Time to Handle Large Number of Records.
  8. Dictionaries:  Efficient data storage with keys
  9. Data Frames: Structured data storage

Course content

videoChapter Overview Start
videoCLO 1.1: Explain Why Computers are More Powerful than Other Machines Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 1.2: Define the Major Components of the Computer and how it works Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 1.3: Write and execute a Python program that shows output on the monitor screen (console) Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 1.4: Use special directives to control output on the screen Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoLogic Building Start
videoLogic Building Solution Start
videoChallenge Yourself Start
videoChallenge Yourself Solution Start
videoVision to Reality Start
videoChapter Overview Start
videoCLO 2.1.1: Write Expressions using Arithmetic Operator, Variables, and Constants while following the precedence Rule Start
videoCLO 2.1.2: Write Expressions using Arithmetic Operator, Variables, and Constants while following the precedence Rule Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 2.2: Write a Python program that takes Input from the user, apply Mathematical Operations and gives Output on Console Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 2.3: Write a Python program using Expressions to solve real world problems Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoLogic Building Start
videoLogic Building Solution Start
videoChallenge Yourself Start
videoChallenge Yourself Solution Start
videoVision to Reality Start
videoChapter Overview Start
videoCLO 3.1.1: Write Reusable code in Python using Functions Start
videoCLO 3.1.2: Write Reusable code in Python using Functions Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 3.2: Implement Decision Making in Python using a single Conditional Statement with one Boolean Expression Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 3.3: Write a While Loop in Python to run the Program Continuously Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 3.4.1: Write a Python program to Display Output on the Console at a Specific Location using gotoxy() function Start
videoCLO 3.4.2: Write a Python program to Display Output on the Console at a Specific Location using gotoxy() function Start
videoCLO 3.4.3: Write a Python program to Display Output on the Console at a Specific Location using gotoxy() function Start
videoCLO 3.4.4: Write a Python program to Display Output on the Console at a Specific Location using gotoxy() function Start
videoLogic Building Start
videoLogic Building Solution Start
videoChallenge Yourself Start
videoChallenge Yourself Solution Start
videoChapter Overview Start
videoCLO 4.1: Differentiate between Void and Value Returning Functions Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 4.2: Solve problems by using User-defined and Pre-defined Functions Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 4.3: Distinguish between Local and Global Variables Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 4.4.1: Categorize the Business Application code into meaningful functions to make the code more modular, readable, structured, and reusable Start
videoCLO 4.4.2: Categorize the Business Application code into meaningful functions to make the code more modular, readable, structured, and reusable Start
videoCLO 4.4.3: Categorize the Business Application code into meaningful functions to make the code more modular, readable, structured, and reusable Start
videoCLO 4.4.4: Categorize the Business Application code into meaningful functions to make the code more modular, readable, structured, and reusable Start
videoCLO 4.5.1: Write a Python program to move the game object on the console using arrow keys and detect collisions Start
videoCLO 4.5.2: Write a Python program to move the game object on the console using arrow keys and detect collisions Start
videoCLO 4.5.3: Write a Python program to move the game object on the console using arrow keys and detect collisions Start
videoChapter Overview Start
videoCLO 5.1.1. Solve problems that involve complex decision-making using multiple IF conditional Statements and make the code more optimized by checking fewer conditional statements using IF-Else statements Start
videoCLO 5.1.2 Solve problems that involve complex decision-making using multiple IF conditional Statements and make the code more optimized by checking fewer conditional statements using IF-Else statements Start
videoSelf Assessment Start
videoSelf Assessment Solution Start
videoCLO 5.2.1. Solve problems that involve complex decision-making using nested IF conditional Statements and Logical Operators. Start
videoCLO 5.2.2. Solve problems that involve complex decision-making using nested IF conditional Statements and Logical Operators. Start
videoCLO 5.3. Solve problems that involve complex decision-making using a single conditional statement with multiple Boolean expressions and multiple logical operators while considering the precedence rules. Start
videoCLO 5.4.1. Categorize the problems into different conditional statements categories and then solve the problem more efficiently. Start
videoCLO 5.4.2. Categorize the problems into different conditional statements categories and then solve the problem more efficiently. Start
videoCLO 5.4.3. Categorize the problems into different conditional statements categories and then solve the problem more efficiently. Start
videoLogic Building Start
videoLogic Building Solution Start
videoLogic Building Part 2 Start
videoLogic Building Part 2 Solution Start
videoChallenge Yourself Start
videoChallenge Yourself Solution Start
videoChallenge Yourself Part 2 Start
videoChallenge Yourself Solution Start
Ustadam

Ustadam

Educator

Course Instructor

  • I have 25 years of experience in programming and 20 years in teaching.
  • My Main goal is to help people discover their best selves in all aspects of life – mentally, socially, physically and spiritually.
  • I believe that by fostering growth in these areas, we can contribute to a thriving society and achieve success in both this world and the hereafter.
  • I'm dedicated to guiding individuals in unlocking their full potential and leading a fulfilling life.