
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question

Transcribed Image Text:**Python Program Analysis**
We have a setup with three Python files: `main.py`, `red.py`, and `green.py`. Each file contains different pieces of code.
### main.py
This is the main script that imports two modules, `red` and `green`. It contains the following code:
```python
import red
import green
print(red.medium)
print(green.medium)
```
The script imports variables from the other two files and prints their values.
### red.py
This file defines four color variables with varying shades of red:
```python
dark = 'vermilion'
bright = 'crimson'
medium = 'salmon'
dull = 'coral'
```
The variable `medium` is set to `'salmon'`.
### green.py
This file defines four color variables with varying shades of green:
```python
dark = 'viridian'
bright = 'forest'
medium = 'chartreuse'
dull = 'olive'
```
The variable `medium` is set to `'chartreuse'`.
### Program Output
The `main.py` script prints the values of `medium` from `red.py` and `green.py`. Therefore, the output will be:
```
salmon
chartreuse
```
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 1 images

Knowledge Booster
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
- Design a program that simulates the slot machine game. When the program starts, it should greet user and then start the game. For each game, the program asks user for the bet amount, and then randomly picks three words/images. If all the three words/images are same, user won three times of the bet amount, if any two of them are same, user won twice of the bet amount, otherwise, user won 0. The program should allow user to play as many games as wanted at one run. The program should display number of games user played, total amount bet and won at the end the program. It should also display each game's information, including game number, bet amount, the three words/images, and won amount. Here is the list of words you may use: Cherries, Oranges, Plums, Bells, Melons, and Bars. i need to do this in raptor flowchartarrow_forwardAccording to the program below is there anything wrong ? 1 mov al,00 2 mov bl,12h 3 mov al,bl 4 mov dl,dx 5 int 10h a All looks ok b First line you can’t move nothing (00) into the al c The second line you can’t move the number 12h into the BL d The third line you can’t move from the bl to the al e The fourth line you can’t move from the dx to the dlarrow_forwarduse the JCreator program for code in picture and show the outputarrow_forward
- Java Programming: The program will figure out a number chosen by a user. Ask user to think of a number from 1 to 100. The program will make guesses and the user will tell the program to guess higher (h) or lower (l). Sample run of the program might look like below : Guess a number from 1 to 100. (here, the user is thinking of 81) Is it 50? (h/l/c): h Is it 75? (h/l/c): h Is it 88? (h/l/c): l Is it 81? (h/l/c): c Great! Do you want to play again? (y/n): y Guess a number from 1 to 100. (here the user is thinking 37) Is it 50? (h/l/c): l Is it 25? (h/l/c): h Is it 37? (h/l/c): c Great! Do you want to play again? (y/n): n our program should implement the binary search algorithm. Every time the program makes a guess it should guess the midpoint of the remaining possible values. Consider the first example above, in which the user has chosen the number 81: On the first guess, the possible values are 1 to 100. The midpoint is 50. The user responds by saying “higher” On the second…arrow_forwardComputer programmin. Java.arrow_forwardObjective: Write a Java program that gives the statistics of a die being rolled some number of times! Task: . Allow the user to enter the number of times a die is rolled. Make sure to check for valid inputs, so no negative numbers. . Use a random number generator that picks only the number 1 through 6 and keep tally on each of those. Give the statistics at the end (see sample output)arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education