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.

Mind and Puzzle E-Games for Kids

Submitted by suspect777 on
Programming Language: VB 6.0 Database: MSAcess2007 and Text File Features Splash Form Instruction on how to play in every games and mind category Mind Category - The player has given 3 lives. Easy Round Basic Questions Randomized Questions 4 choices 10 items Normal Round Grammar Questions Randomized 3 choices 15 items Hard Round 2 Stories Enable/Disable sounds 5 questions per story 4 choices 10

Goods Transport Management System

Submitted by waqasyaqoob on
Goods Transport Management System is a web based application. This system helps to manage the Goods/Cargo Transport business. It provides the functionality to enter shipment information, enter loading detail, enter unloading detail, and the delivery information. It stores the information of containers to load the cargo and also keeps container off load details. FULL DOCUMENTATION ,PRESENTATION and

Fixed Assets Management

Submitted by gulshanmishra on
Fixed Assets Management Manage all information about fixed assets of any organization. Like Assets Transfer one department to another, assets disposal, depreciation calculation etc. Front end in vb.net Back end in sql server 2005. Please change the connection parameter on mdi form after attached the db.

Grade Inquiry with subject Evaluation system

Submitted by jkev on
Online grade inquiry with subject evaluation system written using PHP/MySQL. The features of this system are as following: - add, edit, delete subject - add, edit , delete subject - add ,edit , delete course - add , edit , delete students - add image for students - view grades online - add, edit grade with corresponding equivalent - generate reports for grades - evaluate your next subject to be

Enrollment and Grading System for SPRCNHS

Submitted by Hutzy on
(NOTE: We do simple codings as long as we can) >>The size of this system is over 50mb that is why we compile it and remove some files to make it lower size >>There is a notepad for the SOURCECODE for how to > add, edit, delete > search > keypress > adodb connection > print out refresh * Enrollment System (Feautures) > Add, edit, delete students > Search like (fb, google) > Picture (using webcam to

Advanced Animation with a Deeper Understanding of VB.NET Class

Submitted by donbermoy on
Classes are essential to VB.NET programs. They are the building blocks of our programs. A Class is a reference type—it is allocated on the managed heap. It can have Functions and Subs, and also data members—this includes fields. It is a container for data and code. The data within the class can be accessed with properties. The code is referred to as methods. The best thing about OOP is that it

Save XML file from database record using PHP and MySQL

Submitted by ronard on
Hi to all sourcecodesterian, In last tutorial, we preview the XML tags to the browser. Now we are going to save the XML file to the directory which is "xmlBackup/". We make it in just clicking the Save XML link below the table. Then the script will save it directly to the said path above. How it will help you guys. Thank you for reading... Happy codings...

PHP RegEx: Meta Character class

Submitted by ronard on
We already seen the caret(^) as match the the beginning of string and (\z) match at the end of string that what they do. Now we are going to look with the others with beggining of bracket []. These Meta character are specifying a character class. What does the character class? This is a set of character that you want to match the string. They can listed individually like [abcdf] or a range [a-f]