Saturday 12 November 2016

If Statement in Python

print("Enter your age")
age=int(raw_input())
if age>18:
    print("\nEligible for vote")

Logical or operator Python

print("Enter a character")
ch=raw_input()
if ch=="a" or ch=="e" or ch=="i" or ch=="o" or ch=="u" or ch=="A" or ch=="E" or ch=="I" or ch=="O" or ch=="U" :
    print("\n\tVowel")

Logical or operator Python

print("Enter a character")
ch=raw_input()
if ch=="a" or ch=="e" or ch=="i" or ch=="o" or ch=="u" or ch=="A" or ch=="E" or ch=="I" or ch=="O" or ch=="U" :
    print("\n\tVowel")

Logical and operator Python

print "Eligibility Check Program"
print("Enter your age>> ")
age=int(raw_input())
print "Enter Hieght"
h=int(raw_input())
print "Enter Percentage"
p=float(raw_input())
if(age>18 and h>5 and p>55.55):