i = int(raw_input("Enter a number: "))
if i % 3 == 0 :
print "Number entered is divisible by 3."
#The output in the textbok is 0.000000 because it was not able to convert string to float in C
#Hence, by default it stored 0.0000000. In Python the same would give error. Hence, the answer differs
years = float(raw_input("Input your age in years: "))
secs = years * 365 * 24 * 60 * 60
print "You have livid for %f seconds " %secs
#the way it is given in textbook is not possible in Python. Doing it in different manner
print "Input your age in years: ",
years =(raw_input())
try:
float(years)
secs = float(years) * 365 * 24 * 60 * 60
print "you have lived for %f seconds" %secs
except:
print "the input is not a floating-point number"
#the program will remain same as the previous one
print "Input your age in years: ",
years =(raw_input())
try:
float(years)
secs = float(years) * 365 * 24 * 60 * 60
print "you have lived for %f seconds" %secs
except:
print "the input is not a floating-point number"
print "Input a b c"
a = float(raw_input("a="))
b = float(raw_input("b="))
c = float(raw_input("c="))
big = a
if b>big :
big = b
if c>big :
big = c
print "Largest of the three numbers = %7.2f" %big
#the program will remain same as the previous one
print "Input your age in years: ",
years =(raw_input())
try:
float(years)
secs = float(years) * 365 * 24 * 60 * 60
print "you have lived for %f seconds" %secs
except:
print "the input is not a floating-point number"
input1 = int(raw_input("Input an integer: "))
if input1 :
print "It is non-zero."
else :
print "it is zero."
#The block given in the textbook is not possible in Python. Here the value will remain the same.
i = 10
print "In main. i is %d " %i
i = 20
print "In compound statement. i is %d" %i
i = i+1
print "After incrementing: i is %d" %i
print "In main again. i is %d" %i
for i in range(1, 11):
print i*5,
sum = 0
sum_of_squares = 0
for i in range(2, 31, 2):
sum += i
sum_of_squares += i*i
print "Sum of first 15 positive even numbers = ", sum
print "Sum of their squares = ", sum_of_squares
sum = 0
sum_of_squares = 0
for i in range(30, 1, -2):
sum += i
sum_of_squares += i*i
print "Sum of first 15 positive even numbers = ", sum
print "Sum of their squares = ", sum_of_squares
for i in range(1, 11):
print 5*i,
#error in textbook, i should be initialized by 1
sign = 1
print "Input X and N: "
x = float(raw_input("X: "))
n = int(raw_input("N: "))
x *= 3.1412/180.0
sum, t = x, x
for i in range(1, n):
sign *=-1
t = sign * x * x / (2*i*(2*i+1))
sum += t
print "SIN(X) = %6.2f" %sum
num = 0
sum = 0
print "Input the marks, -1 at the end"
i = int(raw_input())
while i != -1:
sum += i
num += 1
i = int(raw_input())
average = sum / num
print "The average is %.2f" %average
binary = raw_input("Input the binary number: ")
decimal = int(binary, 2)
print "The decimal equivalent of binary number %s is %d" %(binary, decimal)
#there is no do while loop in Python. We will use simple while loop
inchar = ''
while(inchar != 'y' and inchar != 'n'):
inchar = raw_input("Input y or n: ")
if inchar == 'y':
print "you pressed y."
if inchar == 'n':
print "you pressed n"
num = int(raw_input("Input the number: "))
n = num
sum = 0
rev = 0
while(num != 0):
digit = num % 10
sum += digit
rev = rev * 10 + digit
num /= 10
print "Sum of the digits of the number = %4d" %sum
print "Reverse of the number = %7d" %rev
if n == rev:
print "The number is a palindrome"
else:
print "The number is not a palindrome"
print "Choice of destinations: "
print "\t1 - Mercury"
print "\t2 - Venus"
print "\t3 - Mars"
choice = int(raw_input("Enter the number corresponding to your choice: "))
if choice == 1:
print "Mercury is closest to the sun."
print "So the weather may be quite hot there."
print "The journey will cost you 5200 IGCs."
elif choice == 2:
print "Venus is the second planet from the sun."
print "The weather may be hot and poisonous."
print "The journey will cost you 3200 IGCs."
elif choice == 3:
print "Mars is the closest planet to the earth."
print "The weather has been excellent till now."
print "The journey will cost you 1200 IGCs."
else:
"Unknown destination. Unpredictable IGCs"
print "Note: IGC = Ingeer-Galactic Currency"
#there is no switch case in Python, hence, no use of break in if conditions. So, the program will remain same
print "Choice of destinations: "
print "\t1 - Mercury"
print "\t2 - Venus"
print "\t3 - Mars"
choice = int(raw_input("Enter the number corresponding to your choice: "))
if choice == 1:
print "Mercury is closest to the sun."
print "So the weather may be quite hot there."
print "The journey will cost you 5200 IGCs."
elif choice == 2:
print "Venus is the second planet from the sun."
print "The weather may be hot and poisonous."
print "The journey will cost you 3200 IGCs."
elif choice == 3:
print "Mars is the closest planet to the earth."
print "The weather has been excellent till now."
print "The journey will cost you 1200 IGCs."
else:
"Unknown destination. Unpredictable IGCs"
print "Note: IGC = Ingeer-Galactic Currency"
print "Input a b & c"
a = float(raw_input("a: "))
b = float(raw_input("b: "))
c = float(raw_input("c: "))
if a != 0:
disc = b * b - 4 * a * c
print "Discriminant = %5.2f" %disc
if disc < 0:
k = 1
elif disc == 0:
k = 2
elif disc > 0:
k = 3
if k == 1:
print "Roots are imaginary"
real = -b/(2*a)
disc = -disc
num = pow(disc, 0.5)
imag = num/(2*a)
print "Root1 = %5.2f +j %5.2f" %(real, imag)
print "Root2 = %5.2f -j %5.2f" %(real, imag)
elif k == 2:
print "Roots are real equal"
root1 = -b/(2*a)
print "Root1 = Root2 = %7.2f" %root1
elif k == 3:
print "Roots are real and unequal"
root1 = (-b + sqrt(disc))/(2*a)
root2 = (-b - sqrt(disc))/(2*a)
print "Root1 = %7.2f Root2 = %7.2f" %(root1, root2)
else:
print "Equation is linear"
sum = 0
for i in range(5):
num = int(raw_input("Enter an integer: "))
if num < 0:
print "You have entered a negative number"
continue
sum += num
print "The sum of positive integers entered = ", sum
print "Input X & N"
x = float(raw_input("X: "))
n = int(raw_input("N: "))
t = 1
sum = 1
for i in range(1, n):
ifact = i
t = t*x/ifact
sum +=t
print "E raies to power x = %10.4f" %sum
n = int(raw_input("Enter the number: "))
if n == 0:
print "The factorial of 0 is 1"
else:
fact = 1
for i in range(1, n+1):
fact = fact * i
print "Factorial of %4d is %5d" %(n, fact)
binom = 1
q = 0
p = int(raw_input("Input the number of rows: "))
print "Pascal Triangle"
while q < p:
for r in range(40-3*q, 0, -1):
print " ",
for x in range(0, q+1):
if x == 0 or q == 0:
binom = 1
else:
binom = (binom*(q-x+1))/x
print "%6d" %binom,
print "\n"
q+=1
import math
print "Enter 1 for triangle(3 sides) & 2 for triangle(base, ht): ",
k = int(raw_input())
if k == 1:
print "Enter 3 sides - a,b and c"
a = float(raw_input("a: "))
b = float(raw_input("b: "))
c = float(raw_input("c: "))
p = a + b + c
s = (a + b + c)/2
area = math.sqrt(s*(s-a)*(s-b)*(s-c))
print "Perimeter = %6.2f" %p
print "Area of triangle = %7.2f" %area
elif k == 2:
print "Enter height and base"
height = float(raw_input("height: "))
base = float(raw_input("base: "))
area = (base*height)/2
print "Area of triangle = %7.2f" %area
import sys
print "Enter the no of lines in the pyramid: "
t = int(raw_input())
print "\t\tREVERSED PYRAMID OF DIGITS"
k = 0
for p in range(t, 0, -1):
k += 1
sys.stdout.write (" ")
for r in range(0, (k*4)+1):
sys.stdout.write (" ")
for q in range(p, (2*p)-1):
sys.stdout.write ("%4d" %q)
for s in range((2*p)-2, p-1, -1):
sys.stdout.write("%4d\b" %s)
sys.stdout.write ("\n")
print " %d" %p
import math
n = 20
x = float(raw_input("Input x: "))
x = x*3.1412/180
t = 1
sum = 1
for i in range(1, n+1):
t = t*pow(-1, (2*i-1))*x*x/(2*i*(2*i-1))
sum += t
print "COS(X) = %7.3f" %sum
n = int(raw_input("Enter the number of lines: "))
for p in range(1, n+1):
for i in range(1, n-p):
print " ",
m = p
for q in range(1, p+1):
print "%4d" %m,
m +=1
m = m - 2
for q in range(1, p):
print "%4d" %m,
m-=1
print "\n\n"