The program will take in a year as an input from the user and output the popular dance and popular slang from that decade. Years, slang, and dances are stored in parallel lists in the starter code. The decade 1920 is located at index 0 and accompanies the 1920’s slang and dance also located at index 0, the decade 1930 is located at index 1 and accompanies the 1930’s slang and dance also located at index 1, etc. year_list = list(range(1920, 2030, 10)) slang_list = ["bee's knees", "hip", "cool", "nifty", "groovy", "far out", "gnarly", "phat", "sweet", "lit", "fire"] dance_list = ["The Charleston", "The Jitterbug", "The Lindy Hop", "The Hand Jive", "The LocoMotion", "The Electric Slide", "The Moonwalk", "The Macarena", "Single Ladies", "Juju on that Beat", "The Renegade"] year = int(input("Year: ")) decade_index = (year - 1920) // 10 if decade_index == 11: print(f"In the {year_list[decade_index]}'s, The {dance_list[decade_index]} is the hip dance craze!") else: print(f"In the {year_list[decade_index]}'s, The {dance_list[decade_index]} was the hip dance craze!") >> Year: 1934 In the 1930's, The Jitterbug was the hip dance craze! >> Year: 1989 In the 1980's, The Moonwalk was the gnarly dance craze!
The program will take in a year as an input from the user and output the popular dance and popular slang from that decade. Years, slang, and dances are stored in parallel lists in the starter code. The decade 1920 is located at index 0 and accompanies the 1920’s slang and dance also located at index 0, the decade 1930 is located at index 1 and accompanies the 1930’s slang and dance also located at index 1, etc.
1. Define three lists:
- year_list containing decades from 1920 to 2020 in increments of 10.
- slang_list containing popular slang terms for each decade.
- dance_list containing popular dance crazes for each decade.
2. Prompt the user to input a year and store it in the variable 'year' as an integer.
3. Calculate the 'decade_index' by subtracting 1920 from 'year' and then dividing by 10.
4. Check if 'decade_index' is within the range of 0 to 10:
a. If it is within the range:
i. Print a message indicating the decade, popular dance, and slang associated with that decade using the 'year_list,' 'dance_list,' and 'slang_list' respectively.
b. If it is not within the range (i.e., 'decade_index' is less than 0 or greater than 10):
i. Print an error message indicating that the input year is not within the valid range (1920 to 2020).
5. End the program.
Step by step
Solved in 3 steps with 1 images