
Explain the structure of the study model and how practice works, including practice periods and required basics for the logic underlying these projects.
Explore the structured study material for the Python weekend course, including warm-up exercises, blank tasks, comments, and random module usage.
Learn how to download your study material and practice set by clicking a link in the article, filling a Google form, and receiving a Google Drive link for basic projects.
Learn to install anaconda, open the anaconda navigator, and launch Jupiter notebook to use a web-based interface.
Learn to use Jupyter notebook via Anaconda Navigator, open and save notebooks in your Python folder, insert and run code cells with the Run button or Ctrl+Enter, and interrupt loops.
learn to open Jupyter notebook easily from Windows by using cmd and the command prompt, enabling quick access to your Python projects.
Learn to build a Python number guessing game where the computer picks a number between 1 and 200 and provides too low or too high feedback.
Learn to build a number guessing game using random range to generate a number, wait with time.sleep, read and cast input, and control flow with if, elif, and else.
Build a number guessing game in Python using random, input, a while loop, and if statements to guide guesses and pace feedback with time.sleep.
Add five-attempt support to the number guessing game by implementing a counter, real-time remaining messages, and if-else logic to handle correct, high, or low guesses.
Learn how to build a two-player tic tac toe game in Python by implementing a grid, turn-based moves, and basic game logics, then merge concepts to complete the game.
Explore using Python dictionaries to store tic-tac-toe game positions with keys and values. Create and access items using curly braces and brackets, while noting dictionaries are ordered, changeable, and duplicate-free.
convert the tic tac toe board dictionary into a list using a for loop and list.append, and print a 3 by 3 grid with string concatenation and pauses.
Implement a tic-tac-toe game in Python using a dictionary-based 3x3 grid, handle user input, check empty slots, manage turns, and define a start game function.
Build a two-player tic tac toe game in Python using a dictionary-based board, with functions to print the board, handle moves, check win conditions, and alternate players.
Increase your python Knowledge by practicing Real life projects based on python and learn more by Practice activities given in this course.
In this course you will get to learn about :
Some wonderful python projects that will strengthen your CV
how to develop new project ideas in python programming language
how to implement new project ideas on your own using Python.
Some best libraries of python like time, playsound, Tkinter etc.
Logic building ability for making projects in Python
Some new concepts of python programming language
Build fun and memorable projects
Learn how to code in Python in simple and easy way.
Learn Python Functions Programming.
CREATE your own Programs and Applications using python.
Graphical User Interface (GUI) in Python
Errors and Exceptions Handling
Be able to use the in-built Python modules for their own projects
Build Python Graphical User Interfaces(GUI) with Tkinter
Build simple Python based games using programming loops and functions
Get a handle on working with Python 3
Working with text editors like Jupyter Notebook.
Be able to program in Python professionally
Build GUIs and Desktop applications with Python
In this course you will learn to make different python projects, which help you to learn "How to put theory into practice and How to think computationally Problem solving with Python with help of numerous exercises."
Projects are basically named as:
Number Guessing Game
In this project we create a script, which will ask the user to guess a number between 1 and 100.
Best part is user has only 5 guesses to guess the number which make this game more interesting.
We are using the random module with the randrange() function to get a random number.
In this project you will learn about random module, time module and its functions, while loop, if elif statement and more.
Tic-Tac-Toe
Tic-Tac-Toe is a very simple two-player game. So only two players can play at a time. This game is also known as Noughts and Crosses or Xs and Os game. One player plays with X and the other player plays with O. In this game we have a board consisting of a 3X3 grid. In this project we create a script which help us to play this game.
In this project you will learn about Python dictionary, creating function and function calling , list, string string concatenation, for loop, if elif statement and more.