Python

Python Source Code

Free Python Source Code. Download from a vast collections of free Python source code below. Games are also available like Rock Paper Scissors Game and a lot more.

TicTacToe Game in Python GUI

Submitted by donbermoy on
About the Project The TicTacToe GUI game starts with a GUI board. First, the player has to click on any box to start the game. It contains the Minimax algorithm, which is a decision rule used for a two-player game. You can also see the score of the players at the bottom of the board. A simple 2D GUI is provided for comfortable gameplay. The gameplay design is so simple that users won’t find it

Flappy Bird Game Using Pygame

Submitted by razormist on
Flappy Bird Game with Source Code is a Python program that is a single-player arcade game that is similar to the ones from Android and IOS system. This program was developed using Python language. The program is very simple, the player can control the bird by clicking the screen with left click in order to move the bird upward. The player must survive until the end to get higher score than anyone

Hotel Management System Using Python

Submitted by razormist on
Hotel Management System with Source Code is a Python program that can manage and calculate the overall billing of customer. This program was built using Python language. The system does not require a login information in order to navigate, the user can directly assign customer room, calculate room rent, generate restaurant bill, and calculate the total cost billing. The system has a feature that

Student Management System Using Python

Submitted by razormist on
Student Management System with Source Code is a Python program that can manage the list of all student information. This program was created by the use Python language. The system is a simple console application, where the user can manage the information of student by: adding new student, display all student list and deleting some student information. The system features is accessible by entering

Rock Paper Scissors and Tic Tac Toe Game Using Python

Submitted by coderz on
This source code contains Rock Paper Scissors and Tic Tac Toe game programed using Python. The program is very simple to play. Just open the code using command line and type game.py and hit enter. The main menu has two options. 1 is for Rock Paper Scissors game and 2 is for Tic Tac Toe game. There are three numbers that you need to use in order to play Rock Paper Scissors. They are: Rock = 0 Paper

Meters To Miles Converter

Submitted by ndsuero on
A simple Python program that will allow you to convert Meters to Miles. def askUserForMeters(): userMeters = float(input("Please enter the distance" + \ "in Kilometers:")) return userMeters def convertMetersToMiles(userMeters): miles = userMeters * 0.6214 return miles def main(): userMetersTyped = askUserForMeters() miles = convertMetersToMiles(userMetersTyped)