The answer for Conditional Statements - Excercise 1 is
var = input('Enter the input')
count = 0
for i in var:
if i.lower() in ['a','e','i','o','u']:
count = count + 1
print('The length of input is %s' %len(var))
print('The number of vowels in input is %s'%count)