Friday, 30 May 2014

The nth term of the Fibonacci Sequence

Hi friends
I'm back with another program.

This program helps you to find the nth term of the Fibonacci sequence.
The sequence is as follows: 1,1,2,3,5,8,13,21,...

It is very complex to find the nth Fibonacci term with manual calculation as the calculations involved become very complex.
For instance, The 100th Fibonacci term is itself  354354567239843315712 !

So, Take it easy and instead of calculating manually, Let this program do all the work!

Download this program here :  Datafilehost

Screen Shots:


See My other programs here.See My other programs here.

Calculate the no. of days b/w two dates

Hi everyone,

Today I am sharing a program to calculate the number of days between two desired dates.
For example the no. of days between '13/01/2011' and '18/01/2011' is 5.

Note: The first starting day is not counted while the last day is counted.

You can download it here: Datafilehost

Screen Shots:






Will be back soon. Good bye  :-)

See My other programs here.

Tuesday, 27 May 2014

Find the Day!

Hello everyone,

I want to share my new program with you all - Find the Day! - as I call it.
It is called so because it helps to find the day on any date. For instance, It is 'Tuesday' today and the date is '27/05/2014'.
Entering the above date into my program produced the following result:


Download this program here: Datafilehost

Screen Shots:



Calculator

Hi! Friends
This program is a simple Calculator which at present, can perform 6 arithmetic functions. These functions are listed below.

 ' + ' -  Addition
 ' - '  -   Subtraction
 ' * '  -  Multiplication
 ' / '   -  Division
 ' % ' - Modulus
 ' ^ ' -  Exponents

You can Download it here: Datafilehost



Automorphic Number identifier.

Hello friends.

This Program will check if the given number is auto-morphic or not.

An automorphic number is a number which is equal to the ending digit(s) of it's own square. Example:
square of 5 is equal to 25;
square of 25 is equal to 625, etc.

Enjoy! :-)

Download: Datafilehost



Comment if you find any error(s).

Saturday, 24 May 2014

Guess the number!

Hello everyone.

Today, I am sharing with you, a Number-Guessing Game called Guess the Number!.
This game chooses a random number between two random limits and then asks the user to guess the number by showing him the limits.

Give it a try:
Datafilehost



Primality Finder - Check if a given Integer is Prime

Hello readers.

I have an other program to share -- The Primality Finder

As the screen-shot shows It checks if the user's given integer is prime or not , Simple.

The code is available for download here:
Datafilehost




Friday, 23 May 2014

G.K. Quiz With Randomly chosen Questions!

Hi everyone.
Now I am presenting my latest creation - My G.K. Quiz Program that generates random questions from a text(.txt) file!

It uses random.randint function of python to generate a random question number and then reads that question its answer from the text file. It then prompts the user to input the answer for that questions and then matches it with the real answer and itself awards points if the answer is correct.

You can download the code and the quiz text file here:
Datafilehost

Note: You have to place the text file in the same path as the program or otherwise the program is not gonna work!





Temperature Converter

Hello Readers

I am now going to show you my latest program - The Temperature Converter.
The Temperature Converter lets the user input their desired temperature( in Celsius, Fahrenheit or Kelvin) and then converts it to all other temperatures.

It is simple but yet useful. Won't have to do temperature conversions now as this program is gonna do that all!

Will be back soon with new programs. :-)

Download this program:
Datafilehost




Interest and Payment Calculator

Hello everyone. Today I want to share my Interest and Payment Calculator program with all of you.

The task of this program is very simple. It prompts the user to input the amount borrowed, the interest rate and the term(time, in years). It then makes the calculations so as to output the most comfortable monthly installment along with other details. The below screenshots will make you understand the task better.

Download this program:
Datafilehost




Got the idea for making this from Tim Wilson's Python programming Practice problems.: Click Here

-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-

26-05-2014 
There was a mistake in the code. The value of total amount used for calculation of installments was wrong. Corrected it today. The link and screen-shots have been updated. :-)
  

Thursday, 22 May 2014

G-CODER - Encrypt your text!

Hello friends, I am here again and today I have something more to share.
This program can be used to Encrypt or Decrypt text!
It is a result of an idea that ought to slip from my mind but didn't. The code is also available and you may have a look at the 2nd screenshot to know what it exactly does.
It converts the given text into a list and then converts each and every character to another desired character and then converts the resulting characters back into strings.
The Encoded text cannot be understood without having a close look at the program code!

Download this program :
Datafilehost


Wednesday, 21 May 2014

Decimal to Binary

Tired of converting decimal numbers to binary through long-division?
You should definitely download and give a try to my new program.
This program does the opposite of the last program. It will convert decimal numbers to binary numbers.
That's why it is called Bin-to-Dec.

The code is available for download here:
Datafilehost

Binary to Decimal

Hello! Friends, I'm here again to show you all my new program.

This program named Bin-to-Dec converts any binary number to a decimal number. It currently doesn't support fractional conversions but nothing to worry about, I'll be soon making it capable of doing so.

The code for this program is available for download:
Datafilehost

Saturday, 17 May 2014

Math quiz - Python

Hello readers, I am going to show you my self-created python program.
This program is basically a mathematics quiz which helps you to test your calculation skills.
It generates random questions of product, addition and subtraction.
It asks the no. of questions you want to answer.
It's algorithm is as follows:
1. It lets the user input the no. of questions he/she wants to be asked.
2. It then generates random questions by using the random module's randint function.
3. It checks the answer and gives the correct one if the user's answer is wrong.
Thats all and rest you will discover from the program itself.
Download this program:
Datafilehost
The program gives the following output :

-------UPDATE------  
New version! 
Works with python3 (tested with version 3.3.2)
Download : Datafilehost

Don't Forget to hit +1