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.

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)

Safelock 0.5

Submitted by Mohamed Feddad on
Simple drag & drop file encryption tool. based on python and uses PyCrypto to encrypt the inputted files with AES encryption. Then sqlite database file is generated with a unique key to store the encrypted files and folders in binary blobs for later decryption. More info and binaries

USB Resetter 1.0

Submitted by Mohamed Feddad on
USB resetting is the closest equivalent to physically unplugging and re-plugging a USB device. It's written in python, based on PySide for GUI and PyUsb for USB support. How to Run it : (With Python2.7) pip install requirements.txt && python run.py