Assignment 1
Assignment 1
Total Marks:10
1. Write a Python program that prints the numbers from 1 to 50, but:
For multiples of 3, print "Fizz" instead of the number.
For multiples of 5, print "Buzz" instead of the number.
For multiples of both 3 and 5, print "FizzBuzz".
5. Ask the user to input a string. Write a program that counts how
many vowels (a, e, i, o, u) are in the string.