Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question
CHALLENGE ACTIVITY
4.4.5: Multi-branch if-else statements: Print century.
 
Write an if-else statement with multiple branches.
If year is 2101 or later, print "Distant future" (without quotes). Otherwise, if year is 2001 or greater, print "21st century". Otherwise, if year is 1901 or greater, print "20th century". Else (1900 or earlier), print "Long ago".

Sample output with input: 1776 Long ago
```python
year = int(input())

''' Your solution goes here '''
```

**Description:**

This snippet of Python code is the initial setup for a program that takes user input and processes it. Specifically, it reads an integer input from the user, likely representing a year. The placeholder comment `''' Your solution goes here '''` indicates where the rest of the code will be implemented to perform a specific task or calculation using the inputted year.

- **Line 1:** This line is using `int(input())` which captures an input from the user, converts it into an integer, and assigns it to the variable `year`.
  
- **Lines 2-4:** Contains a comment indicating where additional code should be written to provide the solution or functionality required.

**Interface Details:**

- **Run Button:** Located at the bottom left, it is used to execute the code.
- **Test Indicators:** Located on the right side, these boxes show whether certain tests have been passed, indicating the correctness and functionality of the code developed. Here, it shows "1 test passed" and "All tests passed," suggesting that any current test conditions are satisfied.
expand button
Transcribed Image Text:```python year = int(input()) ''' Your solution goes here ''' ``` **Description:** This snippet of Python code is the initial setup for a program that takes user input and processes it. Specifically, it reads an integer input from the user, likely representing a year. The placeholder comment `''' Your solution goes here '''` indicates where the rest of the code will be implemented to perform a specific task or calculation using the inputted year. - **Line 1:** This line is using `int(input())` which captures an input from the user, converts it into an integer, and assigns it to the variable `year`. - **Lines 2-4:** Contains a comment indicating where additional code should be written to provide the solution or functionality required. **Interface Details:** - **Run Button:** Located at the bottom left, it is used to execute the code. - **Test Indicators:** Located on the right side, these boxes show whether certain tests have been passed, indicating the correctness and functionality of the code developed. Here, it shows "1 test passed" and "All tests passed," suggesting that any current test conditions are satisfied.
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education