Starting Out with Python (3rd Edition)
3rd Edition
ISBN: 9780133582734
Author: Tony Gaddis
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Concept explainers
Textbook Question
Chapter 2, Problem 19MC
Which built-in function can be used to read input that has been typed on the keyboard?
a. input ()
b. get input ()
c. read_input ()
d. keyboard ()
Expert Solution & Answer
Learn your wayIncludes step-by-step video
schedule04:14
Students have asked these similar questions
Follow instructions
PLEASE COMMENT ALL CODE
Create a python program that checks whether a number is even or odd.
Sample run:
Even or Odd Checker
Enter an integer: 33
This is an odd number.
Specifications
Store the code that gets user input and displays output in the main function.
Store the code that checks whether the number is even or odd in a separate function.
validate the use inputs, only integers accepted, give the user an option to enter again, ask the user if wants to try again.
QI: Write a program to simulate a simple calculator to execute the operations: +, for addition
-, for subtraction s for sin, c for cos, t for tan the calculator never ending and only exit
when select the letters 'e' or 'E' to exit.
The program should do the following:
1. Print the welcome message for the calculator,
2. Display the menu of operations,
3. Prompts the user to select the available operations,
4. Prompts the user to input the parameters,
5. Print the result of the selected operation.
Chapter 2 Solutions
Starting Out with Python (3rd Edition)
Ch. 2.1 - Who is a programmers customer?Ch. 2.1 - What is a software requirement?Ch. 2.1 - What is an algorithm?Ch. 2.1 - What is pseudocode?Ch. 2.1 - Prob. 5CPCh. 2.1 - Prob. 6CPCh. 2.3 - Write a statement that displays your name.Ch. 2.3 - Write a statement that displays the following...Ch. 2.3 - Write a statement that displays the following...Ch. 2.5 - Prob. 10CP
Ch. 2.5 - Which of the following are illegal variable names...Ch. 2.5 - Prob. 12CPCh. 2.5 - Is the following assignment statement valid or...Ch. 2.5 - Prob. 14CPCh. 2.5 - Look at the following assignment statements:...Ch. 2.5 - What will be displayed by the following program?...Ch. 2.6 - You need the user of a program to enter a...Ch. 2.6 - Prob. 18CPCh. 2.7 - Prob. 19CPCh. 2.7 - Prob. 20CPCh. 2.7 - Prob. 21CPCh. 2 - A ______ error does not prevent the program from...Ch. 2 - Prob. 2MCCh. 2 - A(n) __________ is a set of well-defined logical...Ch. 2 - An Informal language that has no syntax rules and...Ch. 2 - A _______ is a diagram that graphically depicts...Ch. 2 - A ______ is a sequence of characters. a. char...Ch. 2 - Prob. 7MCCh. 2 - Prob. 8MCCh. 2 - A string literal in Python must be enclosed in...Ch. 2 - Prob. 10MCCh. 2 - A(n) __________ makes a variable reference a value...Ch. 2 - This symbol marks the beginning of a comment in...Ch. 2 - Which of the following statements will cause an...Ch. 2 - In the expression 12 + 7, the values on the right...Ch. 2 - This operator performs integer division. a. // b....Ch. 2 - This is an operator that raises a number to a...Ch. 2 - This operator performs division, but instead of...Ch. 2 - Prob. 18MCCh. 2 - Which built-in function can be used to read input...Ch. 2 - Prob. 20MCCh. 2 - Programmers must be careful not to make syntax...Ch. 2 - In a math expression, multiplication and division...Ch. 2 - Variable names can have spaces in them.Ch. 2 - In Python, the first character of a variable name...Ch. 2 - If you print a variable that has not been assigned...Ch. 2 - What does a professional programmer usually do...Ch. 2 - What is pseudocode?Ch. 2 - Computer programs typically perform what three...Ch. 2 - If a math expression adds a float to an int, what...Ch. 2 - What is the difference between floating-point...Ch. 2 - Write Python code that prompts the user to enter...Ch. 2 - Write Python code that prompts the user to enter...Ch. 2 - Write assignment statements that perform the...Ch. 2 - Assume the variables result, w, x, y, and z are...Ch. 2 - Write a Python statement that assigns the sum of...Ch. 2 - Write a Python statement that subtracts the...Ch. 2 - Write a Python statement that multiplies the...Ch. 2 - Prob. 8AWCh. 2 - What would the following display? num = 99 num = 5...Ch. 2 - Assume the variable sales references a float...Ch. 2 - Assume the following statement has been executed:...Ch. 2 - What will the following statement display?...Ch. 2 - Personal Information Write a program that displays...Ch. 2 - Sales Prediction A company has determined that its...Ch. 2 - Land Calculation One acre of land is equivalent to...Ch. 2 - Total Purchase A customer in a store is purchasing...Ch. 2 - Distance Traveled Assuming there are no accidents...Ch. 2 - Sales Tax Write a program that will ask the user...Ch. 2 - Miles-per-Gallon A car's miles-per-gallon (MPG)...Ch. 2 - Tip, Tax, and Total Write a program that...Ch. 2 - Celsius to Fahrenheit Temperature Converter Write...Ch. 2 - Ingredient Adjuster A cookie recipe calls for the...Ch. 2 - Male and Female Percentages Write a program that...Ch. 2 - Stock Transaction Program Last month, Joe...
Additional Engineering Textbook Solutions
Find more solutions based on key concepts
Find the error in each of the following. (Note: There may be more than one error.) The following code should pr...
C How to Program (8th Edition)
Describe a method that can be used to gather a piece of data such as the users age.
Web Development and Design Foundations with HTML5 (9th Edition) (What's New in Computer Science)
Bundling together an objects data and procedures is called _______ .
Starting Out with C++: Early Objects
Match the following terms to the appropriate definition: _____equi-join _____derived table _____natural join __...
Modern Database Management
What Ada construct provides support for abstract data types?
Concepts of Programming Languages (11th Edition)
3.12 (Date Create a class called Date that includes three pieces Of information as data
members—a month (type ...
C++ How to Program (10th Edition)
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
- Dealing With Months by CodeChum Admin We're done dealing with days. It's time to step up and now deal with months! Instructions: 1. In the code editor, you are provided with a code in the main() which has 12 cout's. Each cout prints a month with its corresponding value. For this program, January is 1, February is 2, March is 3, and so on. When you run the initial code, you will encounter errors because these month names that have been printed don't exist yet. 2. Your task is to create an enum data type which contains these month names as values so that when we run the code, there will be no more error. 3. Do not edit anything in the main(). Output January.= 1 February = 2 March:= 3 April-=-4 May--5 June:=-6 July =-7 August.=-8 September ·=-9 October:= 10 November.=11 December.= 12arrow_forwardEasy Pyhthon Program Please Answer Fast:arrow_forward6) Write a program to guess a number chosen by the user. In this program a user will choose asecret number from 1..maximum. The program will prompt the user for the maximum value,which the user will enter. The program will then make a guess as to the value of the secretnumber, and prompt the user to say if the actual number is higher, lower, or correct. Thecomputer will then guess another number until it guesses the correct secret number.arrow_forward
- Fill in the blanks: B5, C6, N7, O8, ___ A. S9 B. P9 C. H9 D. F9arrow_forwardIf the input is f, what is the value displayed?arrow_forwardPlease read all the instructions. The output should be like in the 2nd picture and the green colored words should user inputs. Please show all the codes of EV_driver.cpp, EV.cpp, EV.h files + the 2 outputs. Please give as pictures and also as text writingarrow_forward
- Q2/ Write a program that reads a code and temperature. If the code is 1, convert from centigrade to Fahrenheit. If the code is 2, convert from Fahrenheit to centigrade F = C*9/5+32 C =(F-32)*5/9arrow_forward. Write a program that will calculate the account balance after we deposited the amount of money for a given period (in years) with interest rate. The program shall ask the user to input the amount (m), period (n) and interest rate (r). Write a local function that will calculate the balance (B). Display the result of the balance calculation. Use the formula below for the balance. Save program as LE9-2.m and flowchart/pseudo-code as LE9-2.png or LE9-2.txt. B=m∗(1+r)narrow_forwarddo it fastarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Introduction to Operators in C; Author: Neso Academy;https://www.youtube.com/watch?v=50Pb27JoUrw;License: Standard YouTube License, CC-BY