Intro to Python!
1. Using while loops, write a program that prints multiples of 5which are less than 100. Your loop initially starts from 0.
2. Consider B to be a list of alphabetically ordered strings.Using while loops, write a program that only prints words whichstart with letter A.
B = [Alex, Airplane, Alpha, Australia, Ben, Book, Bank, Circuit,Count, Dark]
3. Using while loop, create a program that only prints first 18multiples of 7.Hint: Your loop initially starts from 1. You shouldcreate a counter to keep track!