Question

Can someone verify the programming below using visual studio code python Stores 2 decimal numbers as...

Can someone verify the programming below using visual studio code python

  1. Stores 2 decimal numbers as variables.
  2. Stores one addition, one subtraction, one multiplication, and one division operation of these variables as variables.
  3. Prints out each of the four results as:

    <numeric value of variable 1> plus <numeric value of variable 2> equals <value of variable that stored the result of addition>

    <numeric value of variable 1> minus <numeric value of variable 2> equals <value of variable that stored the result of subtraction>

    ...etc. Each output should be on its own line.
  4. Stores the current month as a string variable (e.g. March, June, etc.) and day of the month as a numeric variable.
  5. Outputs "Today is day <day of month> of the month of <month variable>. This should be on a new line and tabbed over two times.
0 0
Add a comment Improve this question Transcribed image text
Answer #1


Given below is the code for the question. PLEASE MAKE SURE INDENTATION IS EXACTLY AS SHOWN IN IMAGE.
Please do rate the answer if it helped. Thank you.

num1 = 3.8
num2 = 1.5
sum = num1 + num2
diff = num1 - num2
prod = num1 * num2
quo = num1 / num2
print('{} plus {} equals {}'.format(num1, num2, sum))
print('{} minus {} equals {}'. format(num1, num2, diff))
print('{} multiplied by {} equals {}'.format(num1, num2, prod))
print('{} divided by {} equals {}'.format(num1, num2, quo))

month = 'July'
day = 30
print('\t\tToday is day {} of the month of {}'.format(day, month))

1 2 3 4 5 6 7 8 9 10 11 12 13 14 numl. = 3.8 num2 = 1.5 sum = numl. +. num2 diff = numl. -. num2 prod = numl. *. num2 quo = n

3.8 plus 1.5 equals 5.3 13.8 minus 1.5 equals 2.3 3.8 multiplied by 1.5 equals 5.699999999999999 13.8 divided by 1.5 equals 2

Add a comment
Know the answer?
Add Answer to:
Can someone verify the programming below using visual studio code python Stores 2 decimal numbers as...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Can someone verify the programming code below for visual studio code python. Stores your first name...

    Can someone verify the programming code below for visual studio code python. Stores your first name as a variable. Use all lowercase letters when you declare it. Stores your last name as a variable. Use all uppercase letters when you declare it. Prints out, "Hello, <first name> <last name>" with the first name converted to uppercase letters and the last name converted to lowercase letters using string functions. Prints out two newlines. Prints out the following: "Start by doing what's...

  • Programming question. Using Visual Studio 2019 C#. Windows Forms Application. Write the code to display the message “Entry error” in the msgLabel when the value in the Integer units variable is less t...

    Programming question. Using Visual Studio 2019 C#. Windows Forms Application. Write the code to display the message “Entry error” in the msgLabel when the value in the Integer units variable is less than or equal to 0. Otherwise, calculate the total owed as follows: If the value stored in the units variable is less than 20, multiply the value by $10; otherwise, multiply it by $5. Store the total owed in the total variable.

  • USE C++ FOR THE CODE THAT CAN RUN IN VISUAL STUDIO 2019 (or a complier) Ignore...

    USE C++ FOR THE CODE THAT CAN RUN IN VISUAL STUDIO 2019 (or a complier) Ignore the last paragraph on the bottom of the page! \ Write a program YourName-Assignments (replace Your Name with your actual name, no spaces) that reads from students' records (one student per line) in the following format: Last Name Tests Grade Assignments Grade and computes and outputs (to the console) the STUDENT STATISTICS in a table format one line per student: Student Name Total Points...

  • If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but...

    If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but minor discrepancies may require you to adjust. If you are attempting this assignment using another version of Visual Studio, you can expect differences in the look, feel, and/or step-by-step instructions below and you’ll have to determine the equivalent actions or operations for your version on your own. INTRODUCTION: In this assignment, you will develop some of the logic for, and then work with, the...

  • I'm using code blocks to perform this. These problems are from my C Programming Beginners book....

    I'm using code blocks to perform this. These problems are from my C Programming Beginners book. Not too familiar with C programming so any help would be great. I would like to see how it is formatted. Also, I don't understand Problem 4 at all. Thanks. 1- Create three integer variables and initialize to zero. 2- Create three float variables and initialize to zero. 3- Create three double variables and initialize to zero. 4- Create one character variables and initialize...

  • Exercise 2 Using javascript (visual studio code) (a) Write code that creates 5 item objects (records)...

    Exercise 2 Using javascript (visual studio code) (a) Write code that creates 5 item objects (records) (b) Place the five item objects into an array (c) Write a function that prints an array of your items it has one parameter an array of items (d) Write a function that counts items that match some attribute value. (e) Write a function that filters an array of items. It has three parameter an array of item, an attribute name and a value....

  • PLEASE DO IN C# AND MAKE SURE I CAN COPY CODE IN VISUAL STUDIO Program 2:...

    PLEASE DO IN C# AND MAKE SURE I CAN COPY CODE IN VISUAL STUDIO Program 2: Design (pseudocode) and implement (source code) a class called Counter. It should have one private instance variable representing the value of the counter. It should have two instance methods: increment() which adds on to the counter value and getValue() which returns the current value. After creating the Counter class, create a program that simulates tossing a coin 100 times using two Counter objects (Head...

  • Can someone help me with this Python code Summary In this lab, you work with the...

    Can someone help me with this Python code Summary In this lab, you work with the same Python program you worked with in Labs 5-1 and 5-3. As in those earlier labs, the completed program should print the numbers 0 through 10, along with their values multiplied by 2 and by 10. However, in this lab you should accomplish this using a while loop with a break statement. Instructions Make sure that the file NewestMultiply.py is selected and open. Write...

  • 1) Translate the following equation into a Python assignment statement 2) Write Python code that prints...

    1) Translate the following equation into a Python assignment statement 2) Write Python code that prints PLUS, MINUS, O ZERO, depending on the value stored in a variable named N. 3) What is printed by: 3 - 1 while 5: while 10 Print ) Page 1 of 9 4) Write a Python while loop that reads in integers until the user enters a negative number, then prints the sum of the numbers. 1-2 of 9 4) Write a Python while...

  • (For Python program)   Write a program that fulfills the functionalities of a mathematical quiz with the...

    (For Python program)   Write a program that fulfills the functionalities of a mathematical quiz with the four basic arithmetic operations, i.e., addition, subtraction, multiplication and integer division. A sample partial output of the math quiz program is shown below. The user can select the type of math operations that he/she would like to proceed with. Once a choice (i.e., menu option index) is entered, the program generates a question and asks the user for an answer. A sample partial output...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT