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.

C Program - Working with Sub-arrays

Submitted by davidwachira on
C program with the following specifications : • An array of a variable size (n) • A variable (y) of type integer • The algorithm should divide the array into n/y parts • Calculate the average for each part • Finally find the maximum value among the averages #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int y; /* Declaration of a variable called y of type integer. */

How to Create a Random ID Generator in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a Random ID generator. Steps of Creation: Step 1: First lets import System.Net and System.Text so we can use the internet and a function get a string between two points within a given string. Let's import those now and create our getbetween function... Imports System.Net Imports System.Text.RegularExpressions Private Function GetBetween(ByVal

How to Create a Program to Login to Twitter in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a simple program to login to Twitter. This bot will not do anything other than login so you must know bot basics to carry on for performing actions. Steps of Creation: Step 1: I have created a simple form with just a button1 which is used for starting the process; Textbox1 to contain the username/email and Textbox2 for the password. You will

How to Create a Random Line Selector in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a random line selector from a word document. Steps of Creation: Step 1: First we want to create a form with... Textbox1 - File Path Textbox2 - Chosen line Button1 - Browser for file path Button2 - Get random line Step 2: Now lets do the button1 function - selecting a file path... Private Sub Button1_Click(sender As Object, e As EventArgs)

Scientific Calculator

Submitted by Raj.Sharma on
This Scientific Calculator is written in C#.NET 4.0... For students or anyone else who needs program or source code for thesis writing or any Professional Software Development,Website Development,Mobile Apps Development at affordable cost contact me at Email : [email protected],[email protected] Facebook : https://www.facebook.com/Rajcoolguy99 skype- [email protected] WhatsApp or Viber -

String and Numeric Validation Using JavaScript

Submitted by jaymeen_86 on
This Program Demonstrates textbox input validations on keypress. Feature of this program is how to Validate textbox onkeypress event to prevent user to input firstalphabet,secondalphabet Characters. Most Important feature is it ristricts user to input only numeric values in textbox using ASCII Values. Hope you find it helpful.