Write a shell (text-based) program, called ticket_price.py, that prompts the user for their age and, depending on the user's response, prints out one of the three sentences below:
1. Children 5 and under are free, so your price is $0.
2. Seniors 60 and over are 1/2 off, so your price is $10.
3. Your price is $20.
Below is an example of a 15-year-old using the program:
PS C:\Users\ssiva\Desktop> python ticket_price.py
PS C:\Users\ssiva\Desktop>
Submit the file ticket_price.py when done.