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!

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question

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!
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning