Password Protecting Your Python Application
This article will provide you with all the information you need to add a password security to your python program. The article will go through various methods. Includes python code and sample program...
View ArticleAuthentication of Users and Passwords in Python
Ever wanted to add user name and password access to your python application? This post will cover everything you need to know on how to it.
View ArticleA Quick Tutorial for Python Syntax
Python syntax and datatypes covered quickly. Python for the already programmer and the one who wants to become a programmer.
View ArticleThe Basics Of Classes in Java
This article introduces the notion of Classes and Objects in a simple and easy way with an example in Java.
View ArticleCompute the Average, Min, Max and Mode of a List in Python
This article describes how to find properties of a list in Python such as minimum value, maximum value, mean(average), mode and range of a list of numbers
View ArticleIntroduction to Functions in Python
In this article we discuss the 4 types of functions and give examples on how to use them in Pyhton 2.7. The same ideas may apply to newer versions or other languages as well.
View ArticleTemperature Conversion Application In Python
Using a Temperature Conversation Application in Python we can show how to use functions in Python within modules so that code can be used in large programs.
View ArticleSending Email From Python Using Command Line
This Python code will show you how to send an email from you Python program using only a couple of functions.
View ArticleThe Game of Battleships in Python
The game of Battleships is a great game for beginner and advance programmers. It is fun to code and even more fun to play. Checkout this command line fun game.
View ArticleThe Rainfall Problem in Java
The rainfall program is a quick exam and interview question commonly used. There are many variation of it, this just happens to be one in Java.
View ArticleComputer Programming I
After writing about the content of Computer Programming III and writing the assumptions for that, I had a friend take a look. The most obvious problem was that I didn't define part I and II. So the...
View ArticleProgramming Languages to a Non-Programmer
As a non-programmer, you have often heard programming languages names being used. Marketers have always tried to used technical words to market new products and to claim superiority using “fancy”...
View ArticleHow to Find Prime Numbers in Python
To mathematicians prime numbers represent a certain Nobel challenge. They have been studying prime numbers for a while, trying to learn their properties. Some mathematicians actually made progress....
View Article10 Lessons Needed To Learn Programming In Any Language*
Without farther delay, here is my top 10 lessons to learn programming in the order they should be taught: Environment Setup, Input/Output Integers and basic arithmetic (+,-,*,/,%) + order of operations...
View Article