6. Type 6 + 4 * 9 at the Python prompt and hit enter. Record what happens. Now create a python script with the following contents: 1 6 + 4 * 9 What happens when you run this script? Now change the script contents to: 1 print(6 + 4 * 9) and run it again. What happened this time?

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter2: Problem Solving Using C++using
Section2.2: Programming Style
Problem 3E: (For thought) a. When used in a message, the backslash character alters the meaning of the character...
icon
Related questions
Question
Please show me how to do problem 6) using pyton with an explanation.
6, Type 6 + 4 * 9 at the Python prompt and hit enter. Record what happens.
Now create a python script with the following contents:
1
6 + 4 * 9
What happens when you run this script? Now change the script contents to:
1
print(6 + 4 * 9)
and run it again.
What happened this time?
Whenever an expression is typed at the Python prompt, it is evaluated and the result is
automatically shown on the line below. (Like on your calculator, if you type this expression
you'll get the result 42.)
pokproject.net/thinkcs/python/english3e/way_of_the_program.html[1/4/2012 9:36:51 PM]
the program - How to Think Like a Computer Scientist: Learning with Python 3
A script is different, however. Evaluations of expressions are not automatically displayed, so it is
necessary to use the print function to make the answer show up.
It is hardly ever necessary to use the print function in immediate mode / at the command
prompt.
Transcribed Image Text:6, Type 6 + 4 * 9 at the Python prompt and hit enter. Record what happens. Now create a python script with the following contents: 1 6 + 4 * 9 What happens when you run this script? Now change the script contents to: 1 print(6 + 4 * 9) and run it again. What happened this time? Whenever an expression is typed at the Python prompt, it is evaluated and the result is automatically shown on the line below. (Like on your calculator, if you type this expression you'll get the result 42.) pokproject.net/thinkcs/python/english3e/way_of_the_program.html[1/4/2012 9:36:51 PM] the program - How to Think Like a Computer Scientist: Learning with Python 3 A script is different, however. Evaluations of expressions are not automatically displayed, so it is necessary to use the print function to make the answer show up. It is hardly ever necessary to use the print function in immediate mode / at the command prompt.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Encryption and decryption
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr