Posts

Showing posts with the label Python Projects

#9 Tic Tac Toe Game using python

Image
 Tic Tac Toe Game using python You all guys remember the game tic tac toe we play in our childhood on notebook pages. So I have created this game using the python Tkinter library so it is free from viruses and you can download it from the below link. If you will play it one time then you feel like you go on your childhood days. I have done a lot of hard work in finding logics and algorithms for this game and finally, I have made it so please install this on your pc and please play at least one time and give feedback to me on my website. Note:  No any coding software and languages are required to run this software you can simply download the setup from the below link and install on your system and enjoy the game. The logic behind the code: So if you want to know the logic behind the game then you can download the python file 1   from the below link and if you want to download the python file which contains the logic of the game in GUI as well as GUI designing then you can ...

# 7 : Calculator using Python Tkinter

Image
 Calculator using Python Tkinter  This is an amazing python Tkinter project based on object-oriented programming that I have made. In this project, I have created a calculator using the Tkinter library and this is able to do basic mathematical operations like adding, subtracting, etc. The main logic behind the Programme = I can simply add the number or operations in a number string,  on which user press and on clicking the '='  button the result of this string is printed using eval built in the function of python. Eval function is used to operate strings like numbers. If you want to know a brief about the logic then a brief explanation is given at the beginning of code so please download python file from the link below or see the code below Download links Click here to download the python code file Click here to download this software and install in your system Note = No any coding software is required to run this software simply download this from the second link f...

#6 Snake Game using Python (with gameplay)

Image
 Snake Game using Python This is very interesting and useful python project. While making this project I have learned a lot of things and function in python. In this project, there is the practice of each python basic concept. So this project is best for beginners. This project is made by using the python pygame library . So for making this project you must know little about pygame. How to run this game on your pc only if you have installed python: Simply click on the link given below and after the clicking, a zip file is downloaded and extract the file and you will receive and a folder named data containing some photos, music and a python file. simply open your code editor in this data folder and run the python file and enjoy the game. Note = Do not rename the file -------------------------- -DOWNLOAD NOW -------------------- some screenshots of the game: The GamePlay of few seconds: Code of the game the code is also in downloadable files: ****************************************...

# 5: Chrom Dino Game Bot(Robot play game )

 Chrome Dino game Bot Automation with Python This project is a very interesting python project in this project I have made a bot that plays the dino game in the chrome infinitely long I want. This bot will play this game without getting out and it cannot stop playing till we stop the programme so this project is awesome and interesting python project.This project is done by using some library of python like pyautogui and python image library (PIL) etc. The logic behind the project? The logic of this programme is written in such a way that every fraction of seconds it is taking a screenshot of window and convert it in black and white. And there is rectangle drawn in the screen in the way of cactus and birds in the game which is not visible to you. Initially, the color of the window in the rectangle is white but when cactus or bird come, due to their black color the color of the rectangle will also become black and Tthe program is written in such a way that if the color in the rectan...

#4 Password generator

 Password generator This programme will give you a strong password every time when you need and its also remember your passwords in a file and when you forget you can also check it from your file. This programme will suggest such types of passwords which are not hackable. Please make a text file password.txt in you directory to run this programme Code for software *************************** import string import random as r ls = [] s1 = string.ascii_uppercase s2 = string.ascii_lowercase s3 = string.digits s4 = string.punctuation def random_choice(value): choice = r.choice(value) ls.append(choice) return ls for i in range( 2 ): random_choice(s1) random_choice(s2) random_choice(s3) random_choice(s4) final_password = '' r.shuffle(ls) for items in ls: final_password +=items with open( 'password.txt' , 'a' ) as passfile: passfile.write(final_password+ ' \n ' ) print(final_password) ***************************

#3 Water remainder Programme

 Water remainder Programme  In this software, you simply have to enter the timing after you want to drink water and it will remind you  by playing music and you have to enter stop to stop the music . in those time interval and also note the timings in the text file that in which time and which day you eat water how many times, and is it is useful to you or not. If you want to download whole the file and data as well here is the link. Simply download the whole data files given below and after downloading copy the whole files in a separate folder and open your code editor software in this folder and enjoy the programme.  Download Text file Download Sound(wav) file Download Python file Code For this program, Whole this code is written in Python file above. Note = Please add a timing.txt file and a  ".wav" 'file in your directory while running this program *************************** #importing some modules from pygame import mixer import time import datetime from w...

#2 Library Management Software

 Library Management Software using Python This is the basic python classes and objects project which is used to manage library data . In this software you can declare a library and books present in it and it offers you following options You can see all the books available for rent. You can update the library with new books,remove the books This software can tell you which student has issued which books from library This will inform you if the book you want to let is not in library.  If you want to know which person has taken a particular book then you have simply to enter the name of book and this programme will simply tell you name of person. Code for the programme ********************************************* class library : def __init__ ( self ,list_of_books,library_name): self .list_of_books = list_of_books self .name_of_library = library_name self .book_lender = {} def display_book ( self ): """Function for displaying books...