Write a program that displays the following information Your name  Your address, with city

preview_player
Показать описание
Get Zero Plagiarism Human Written Custom Made Writings

Write a program that displays the following information: Your name Your address, with city, state, and ZIP Your telephone number Your college major Q2. A customer in a store is purchasing five items. Write a program that asks for the price of each item, then displays the subtotal of the sale, the amount of sales tax, and the total. Assume the sales tax is 7 percent. Q3. Write the following code and submit the screenshot of the running program. # Get the user's name, age, and income. name = input('What is your name? ') age = int(input('What is your age? ')) income = float(input('What is your income? ')) # Display the data. print('Here is the data you entered:') print('Name:', name) print('Age:', age) print('Income:', income) Q4. Write the following code and submit the screenshot of the running program. # This program gets an item's original price and # calculates its sale price, with a 20% discount. # Get the item's original price. original_price = float(input('Enter the item's original price: ')) # Calculate the amount of the discount. discount = original_price * 0.2 # Calculate the sale price. sale_price = original_price - discount # Display the sale price. print('The sale price is', sale_price)
Рекомендации по теме