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!

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Step 1: Algorithm :

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.

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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education