Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

The purpose of this exercise is to tell you how hard it may be to write Python programs in the standard programs that most people use for writing text. Type the following one-line program in either Microsoft Word or OpenOffice: $$ \text { print "Hello, World!" } $$ Both Word and OpenOffice are so "smart" that they automatically edit "print" to "Print" since a sentence should always start with a capital. This is just an example that word processors are made for writing documents, not computer programs. Save the program as a .doc (Word) or .odt (OpenOffice) file. Now try to run this file as a Python program. You will get a message SyntaxError: Non-ASCII character Explain why you get this error. Then save the program as a .txt file. Run this file as a Python program. It may work well if you wrote the program text in Microsoft Word, but with OpenOffice there may still be strange characters in the file. Use a text editor to view the exact contents of the file. Name of program file: office.py.

Short Answer

Expert verified
Word processors add non-ASCII formatting, causing a SyntaxError. Save as a .txt and verify contents to fix.

Step by step solution

01

Understanding the Task

The task is to type and save a one-line Python code using a word processor (Word or OpenOffice) and understand why it might not work when executed. This highlights why word processors are not suitable for coding.
02

Writing the Code

Start by typing the Python code:\["print \text{{'Hello, World!'}}"\]in a word processor such as Microsoft Word or OpenOffice. Notice how these applications may autocorrect the text, potentially changing 'print' to 'Print' because it assumes it's a sentence.
03

Saving as a Document File

Save the written code in the file format suited to your word processor, either as a .doc or .odt file. This action underscores the challenge as these formats introduce non-standard formatting elements into the file.
04

Attempt to Execute the File

Try to run this .doc or .odt file as a Python script. You will likely encounter a trial error, perhaps a SyntaxError, due to non-ASCII characters and the file format being incompatible with Python execution.
05

Explanation of the Error

Word processors save files with formatting that involves non-ASCII characters as part of their internal structuring. These characters lead to a SyntaxError when attempting to run the file as a Python script because Python cannot interpret them as valid code.
06

Saving as a .txt File

Open the text you wrote in Microsoft Word or OpenOffice, and this time, save it as a .txt file to remove the formatting issues that interfere with execution.
07

Running the .txt File

Execute the .txt file as a Python program. If it still doesn't run well, especially if initially opened with OpenOffice, use a plain text editor to check if any formatting or extraneous characters were inadvertently included.
08

Verifying with a Text Editor

Using a text editor such as Notepad or VS Code, open the .txt file. Ensure that it consists solely of the desired code \(\text{{print 'Hello, World!'}}\) with no extra characters or formatting, which can cause errors.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

SyntaxError
A `SyntaxError` in Python is an error caused by incorrect or invalid syntax, meaning the code does not adhere to the language's rules for correct structure. Imagine someone writing a sentence in English with jumbled words or incorrect punctuation—it wouldn't make sense.
Similarly, when programming in Python, if the code structure doesn't comply with Python's syntax rules, it cannot be parsed correctly by the interpreter. This often happens when coding in word processors like Microsoft Word or OpenOffice because they introduce additional formatting or strange characters.
  • Word processors may change quotations into curly quotes, which are not valid in Python.
  • The automatic capitalization can alter keywords, triggering errors.
Understanding why a `SyntaxError` occurs is crucial. It allows you to debug and correct your code, ensuring it runs as expected without interruptions.
Non-ASCII Characters
Non-ASCII characters are characters that do not fall within the standard ASCII character set that is commonly used in programming languages. ASCII consists of 128 characters, including letters, digits, punctuation marks, and control characters.
When word processors such as Microsoft Word or OpenOffice save a document, they often include format-specific characters that aren't plain text. These can be special symbols or formatting marks that are non-ASCII, which Python cannot process, resulting in an error.
To avoid issues with non-ASCII characters:
  • Use plain text editors when writing code.
  • Ensure your file is saved without formatting nuances from word processors.
  • Check for any unwanted non-visible characters.
By understanding this concept, programmers can avoid errors associated with non-ASCII characters, ensuring smoother execution of scripts.
Word Processors for Coding
Word processors like Microsoft Word and OpenOffice are designed to create rich-text documents, not to write code. They automatically format text to enhance readability and presentation, which is excellent for creating reports or essays.
However, this very feature makes them undesirable for coding:
  • Autocorrect functions can inadvertently change code syntax.
  • Invisible formatting characters are added, which disrupt coding.
  • Not harmonized with tools or functions meant for programming tasks.
Word processors are essential tools for various tasks but using them for coding can lead to numerous problems and errors. It's better to reserve them for their intended use and explore other tools designed for programming.
Text Editors for Programming
Text editors, such as Notepad or VSCode, are ideal for writing code. These editors provide a plain interface, meaning they do not introduce extra formatting or characters into your script. They ensure that your code remains clean and executable, adhering to the programming language's syntax rules.
  • Text editors often come with features like syntax highlighting, making it easier to spot errors.
  • They support plugins for linting, offering real-time feedback on code quality.
  • Built-in tools for version control or debugging aid in the efficient development process.
By using a text editor specifically designed for coding, you improve your workflow and minimize errors caused by external formatting influences. This helps ensure smoother and more effective programming.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Suppose we have measured the oscillation period \(T\) of a simple pendulum with a mass \(m\) at the end of a massless rod of length \(L\). We have varied \(L\) and recorded the corresponding \(T\) value. The measurements are found in a file src/files/pendulum. dat, containing two columns. The first column contains \(L\) values and the second column has the corresponding \(T\) values. Load the \(L\) and \(T\) values into two arrays. Plot \(L\) versus \(T\) using circles for the data points. We shall assume that \(L\) as a function of \(T\) is a polynomial. Use the NumPy utilities polyfit and poly1d, as explained in Exercise 6.4, and experiment with fitting polynomials of degree 1,2 , and 3. Visualize the polynomial curves together with the experimental data. Which polynomial fits the measured data best? Name of program file: fit_pendulum_data.py.

The program src/basic/lnsum.py produces, among other things, this output: $$ \begin{aligned} &\text { epsilon: } 1 e-04, \text { exact error: } 8.18 \mathrm{e}-04, \mathrm{n}=55 \\ &\text { epsilon: } 1 \mathrm{e}-06, \text { exact error: } 9.02 \mathrm{e}-06, \mathrm{n}=97 \\ &\text { epsilon: } 1 \mathrm{e}-08, \text { exact error: } 8.70 \mathrm{e}-08, \mathrm{n}=142 \\ &\text { epsilon: } 1 \mathrm{e}-10, \text { exact error: } 9.20 \mathrm{e}-10, \mathrm{n}=187 \\ &\text { epsilon: } 1 \mathrm{e}-12, \text { exact error: } 9.31 \mathrm{e}-12, \mathrm{n}=233 \end{aligned} $$ Redirect the output to a file. Write a Python program that reads the file and extracts the numbers corresponding to epsilon, exact error, and \(\mathrm{n}\). Store the numbers in three arrays and plot epsilon and the exact error versus \(\mathrm{n}\). Use a logarithmic scale on the \(y\) axis, which is enabled by the \(\log =\) ' \(\mathrm{y}\) ' keyword argument to the plot function. Name of program file: read_error.py.

For each of a collection of weather forecast sites, say $$ \begin{aligned} &\text { http://weather.yahoo.com } \\ &\text { http://www.weather.com } \\ &\text { http://www.weatherchannel.com } \\ &\text { http://weather.cnn.com } \\ &\text { http://yr.no } \end{aligned} $$ find the pages corresponding to your favorite location. Study the HTML sources and write a function for each HTML page that downloads the web page and extracts basic forecast information: date, weather type (name of symbol), and temperature. Write out a comparison of different forecasts on the screen. Name of program file: weather_forecast_comparison1.py.

Files with data in a tabular fashion are very common and so is the operation of the reading the data into arrays. Therefore, the scitools.filetable module offers easy-to-use functions for loading data files with columns of numbers into NumPy arrays. First read about scitools.filetable using pydoc in a terminal window (cf. page 80). Then solve Exercise \(6.1\) using appropriate functions from the scitools.filetable module. Name of program file: read_2columns_filetable.py.

Imagine that a GPS device measures your position at every \(s\) seconds. The positions are stored as \((x, y)\) coordinates in a file src/files/pos.dat with the an \(x\) and \(y\) number on each line, except for the first line which contains the value of \(s\). First, load \(s\) into a float variable and the \(x\) and \(y\) numbers into two arrays and draw a straight line between the points (i.e., plot the \(y\) coordinates versus the \(x\) coordinates). The next task is to compute and plot the velocity of the movements. If \(x(t)\) and \(y(t)\) are the coordinates of the positions as a function of time, we have that the velocity in \(x\) direction is \(v_{x}(t)=d x / d t\), and the velocity in \(y\) direction is \(v_{y}=d y / d t .\) Since \(x\) and \(y\) are only known for some discrete times, \(t_{k}=k s, k=0, \ldots, n-1\), we must use numerical differentation. A simple (forward) formula is \(v_{x}\left(t_{k}\right) \approx \frac{x\left(t_{k+1}\right)-x\left(t_{k}\right)}{s}, \quad v_{y}\left(t_{k}\right) \approx \frac{y\left(t_{k+1}\right)-y\left(t_{k}\right)}{s}, \quad k=0, \ldots, n-2\) Compute arrays vx and vy with velocities based on the formulas above for \(v_{x}\left(t_{k}\right)\) and \(v_{y}\left(t_{k}\right), k=0, \ldots, n-2 .\) Plot vx versus time and vy versus time. Name of program file: position2velocity.py.

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free