Product SiteDocumentation Site

3.2. കീബോര്‍ഡില്‍ നിന്നും ഇന്‍പുട്ട് സ്വീകരിക്കുന്ന വിധം

Generally the real life python codes do not need to read input from the keyboard. In python we use raw_input function to do input. raw_input("String to show") , this will return a string as output. Let us write a program to read a number from the keyboard and check if it is less than 100 or not. Name of the program is testhundred.py

#!/usr/bin/env python   
number = int(raw_input("Enter an integer: "))
if number < 100:   
    print "Your number is smaller than 100"   
else:   
    print "Your number is greater than 100" 

പ്രോഗ്രാമിന്‍റെ ഔട്ട്പുട്ട്

[kd@kdlappy book]$ ./testhundred.py 
Enter an integer: 13 
Your number is smaller than 100 
[kd@kdlappy book]$ ./testhundred.py 
Enter an integer: 123 
Your number is greater than 100

അടുത്തതായി നമുക്ക് നിക്ഷേപം കണക്കുകൂട്ടുന്നതിന് ഒരു പ്രോഗ്രാം തയ്യാറാക്കാം.

#!/usr/bin/env python 
amount = float(raw_input("Enter amount: ")) 
inrate = float(raw_input("Enter Interest rate: ")) 
period = int(raw_input("Enter period: ")) 
value = 0 
year = 1 
while year <= period:
    value = amount + (inrate * amount)
    print "Year %d Rs. %.2f" %(year, value)
    amount = value
    year = year + 1 

പ്രോഗ്രാമിന്‍റെ ഔട്ട്പുട്ട്

[kd@kdlappy book]$ ./investment.py
Enter amount: 10000
Enter Interest rate: 0.14
Enter period: 5
Year 1 Rs. 11400.00
Year 2 Rs. 12996.00
Year 3 Rs. 14815.44
Year 4 Rs. 16889.60
Year 5 Rs. 19254.15