# 1. Write a Python snippet that creates an email for a user…
# 1. Write a Python snippet that creates an email for a user. In a function called get_email,# prompt for the users first name, last name, birth year and PSU id.# Then call the function create_Email, which creates an email consisting of their first name, the intial of their# last name, the last two digits of their birth year, the first three digits of their PSU ID number, and ending# with “@psu.edu”# 2. Write a Python snippet that acts as a users car radio. Initially prompt them to pick from the menu of what# station to listen to : 1). Country, 2). Classic Rock, 3). Alternative, 4). Pop, 5). Acoustic 6). Sports# Once they choose a channel prompt them to: 1). Stay on the same channel (Repeats the question),# 2). Change the station (Calls the function radio_stations()), 3). Turn off the radio# Funtions used:# radio_stations(): This function prints the channel options for the driver to choose from# play_country: Changes the channel to country and displays that the radio is “now playing Jolene by Dolly Parton”# play_rock: Changes the channel to rock and displays that the radio is “now playing Kashmir by Led Zeppelin”# play_alternative: Changes the channel to alternative and displays that the radio is “now playing Buddy Holly# by Weezer”# play_pop: Changes the channel to pop and displays that the radio is “now playing Fireflies by Owl City”# play_Acoustic: Changes the channel to acoustic and displays that the radio is# “now playing Sitting, Waiting, Watching by Jack Johnson”# play_sports: Changes the channel to sports and displays that the radio is “now listening to local sports talk radio”# turn_off: Displays that the radio is off