Skip to content

Commit a6bcadf

Browse files
committed
changed windows to microsoft windows
1 parent 9d794c1 commit a6bcadf

File tree

15 files changed

+41
-41
lines changed

15 files changed

+41
-41
lines changed

text/back/scripts.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
%
1818
Here we provide some scripts that are used within this book.
1919
These scripts are written for the \bash\ shell, which is the default interpreter running in \ubuntu\ \linux\ \pglspl{terminal}.
20-
Therefore, they will not work under \windows\ or other operating systems.
20+
Therefore, they will not work under \microsoftWindows\ or other operating systems.
2121
Now, our book focuses on \python\ programming, so \bash\ shell scripts are not in the center of our attention.
2222
We here cannot explain how \bash\ scripts work or what their syntax is.
2323
There exist plenty of books and resources on this interesting topic, such as~\cite{NR2005LTBSUSPCB3,Z2017MB,BN2018BC} or \url{https://www.gnu.org/software/bash/}.

text/main/basics/gettingStarted/examples/examples.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
First, you would click on the little downward facing triangle in the button \menu{Code}.
6060
This will open a small dialog \menu{Clone} in which you can click on the \menu{Download ZIP} button.
6161
This, in turn, enters the \pgls{URL}~\expandafter\url{\programmingWithPythonCodeRepo/archive/refs/heads/main.zip} into your browser's download queue.
62-
A \texttt{zip}~archive is a single file that can contain other files and folders and can be opened by the standard file managers both on \ubuntu\ and \windows.
62+
A \texttt{zip}~archive is a single file that can contain other files and folders and can be opened by the standard file managers both on \ubuntu\ and \microsoftWindows.
6363
Once downloaded, the archive contains all the examples that we use in our book.%
6464
\end{sloppypar}%
6565
%

text/main/basics/gettingStarted/firstProgram/firstProgram.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
Instead, we will work in the context of \emph{projects}, which can contain many \python\ files, settings, build scripts, and other resources.
101101
Inside such a project, we would create the \python\ file, write our source code from \cref{lst:very_first_program} into it, and then run it.
102102
The steps for doing this are illustrated with screenshots in \cref{fig:veryFirstProgramA}, which were taken on my \ubuntu\ machine.
103-
On \windows, this will look very similar (maybe with the exception of ``\verb=\='' instead of ``\verb=/='' as directory separator characters in paths).
103+
On \microsoftWindows, this will look very similar (maybe with the exception of ``\verb=\='' instead of ``\verb=/='' as directory separator characters in paths).
104104

105105
Since we started with a completely new \pycharm\ installation in \cref{sec:installingPyCharm}, no project has yet been created.
106106
So when we open \pycharm, we will arrive at the project creation screen illustrated in \cref{fig:firstProgram01createPycharmProject}.
@@ -114,7 +114,7 @@
114114
Below the name text box, you can select the destination directory in which the project folder should be created in the \menu{Location:} box.
115115
You can ignore the text in the screenshot, as this is just the path that I am using on my \ubuntu\ machine.
116116
Instead, you will choose some suitable directory on your computer.
117-
(Notice that in \windows, the directory separator character is ``\verb=\='' and not ``\verb=/='' as on my \ubuntu\ \linux.)
117+
(Notice that in \microsoftWindows, the directory separator character is ``\verb=\='' and not ``\verb=/='' as on my \ubuntu\ \linux.)
118118
Either way, on my machine, I choose the rather elaborate path \directory{home/tweise/local/programming/python/programmingWithPythonCode}.
119119
\pycharm\ will create the folder \directory{00\_veryFirstProject} for our new project \emph{inside} this directory.
120120
But, as said, you will choose some other suitable place on your computer.

text/main/basics/gettingStarted/gettingStarted.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Personally, I strongly recommend using \linux~\cite{T1999TLE,B2022ELATCL,H2022LML} for programming, work, and research.
2323
If you are a student of computer science or any related field, then it is my personal opinion that you should get familiar with this operating system.
2424
Maybe you could start with the very easy-to-use \ubuntu\ \linux~\cite{CN2020ULB,H2020ULU2E}.
25-
Either way, in the following, I will try to provide examples and instructions for both \ubuntu\ and the commercial Microsoft \windows~\cite{B2023W1IO} \pgls{OS}.
25+
Either way, in the following, I will try to provide examples and instructions for both \ubuntu\ and the commercial \microsoftWindows~\cite{B2023W1IO} \pgls{OS}.
2626

2727
Once the necessary software is installed, we will here also learn how to write and execute our very first small \python\ program in \cref{sec:ourFirstProgram}%.
2828
This first program will just print \inQuotes{Hello World!} and then exit.

text/main/basics/gettingStarted/installingPyCharm/installingPyCharmUbuntu/installingPyCharmUbuntu.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
A double-click will open \pycharm.%
7373
\end{sloppypar}%
7474
%
75-
In the installation instructions for \windows, now a user agreement~(\cref{fig:installingPyCharmWindows16running}) and data upload statement~(\cref{fig:installingPyCharmWindows17running}) need to be performed.
75+
In the installation instructions for \microsoftWindows, now a user agreement~(\cref{fig:installingPyCharmWindows16running}) and data upload statement~(\cref{fig:installingPyCharmWindows17running}) need to be performed.
7676
Since I already had \pycharm\ installed previously and probably already agreed/disagreed to them, respectively, these windows did not open in my current installation and I could not take screenshots of them.
77-
If they open, then you can probably treat them exactly as suggested in the \windows\ installation instructions \cref{sec:installingPyCharmWindows}.
77+
If they open, then you can probably treat them exactly as suggested in the \microsoftWindows\ installation instructions \cref{sec:installingPyCharmWindows}.
7878
Either way, we finally get \pycharm\ up and running and can begin our coding~(\cref{fig:installingPyCharmUbuntu08pycharm}).
7979
%
8080
\FloatBarrier%

text/main/basics/gettingStarted/installingPyCharm/installingPyCharmWindows/installingPyCharmWindows.tex

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
\floatRowSep%
2020
%
2121
\subfloat[][%
22-
Selecting the normal \windows\ installer for the \pycharm\ Community Edition.%
22+
Selecting the normal \microsoftWindows\ installer for the \pycharm\ Community Edition.%
2323
\label{fig:installingPyCharmWindows03download}%
2424
]{\tightbox{\includegraphics[width=0.47\linewidth]{\currentDir/installingPyCharmWindows03download}}}%
2525
%
@@ -30,7 +30,7 @@
3030
\label{fig:installingPyCharmWindows04download}%
3131
]{\tightbox{\includegraphics[width=0.47\linewidth]{\currentDir/installingPyCharmWindows04download}}}%
3232
%
33-
\caption{The installation steps of \pycharm\ under \windows.}%
33+
\caption{The installation steps of \pycharm\ under \microsoftWindows.}%
3434
\label{fig:installingPyCharmWindowsA}%
3535
%
3636
\end{figure}%
@@ -106,7 +106,7 @@
106106
\label{fig:installingPyCharmWindows14installation}%
107107
]{\tightbox{\includegraphics[height=4cm]{\currentDir/installingPyCharmWindows14installation}}}%
108108
%
109-
\caption{The installation steps of \pycharm\ under \windows~(continued).}%
109+
\caption{The installation steps of \pycharm\ under \microsoftWindows~(continued).}%
110110
\label{fig:installingPyCharmWindowsB}%
111111
%
112112
\end{figure}%
@@ -145,11 +145,11 @@
145145
]{\tightbox{\includegraphics[width=0.4\linewidth]{\currentDir/installingPyCharmWindows18running}}}%
146146
\floatSep%
147147
%
148-
\caption[]{The installation steps of \pycharm\ under \windows~(continued).}%
148+
\caption[]{The installation steps of \pycharm\ under \microsoftWindows~(continued).}%
149149
\label{fig:installingPyCharmWindowsC}%
150150
\end{figure}%
151151
%
152-
The process of installing \pycharm\ under \windows\ is illustrated in \cref{fig:installingPyCharmWindowsA}.
152+
The process of installing \pycharm\ under \microsoftWindows\ is illustrated in \cref{fig:installingPyCharmWindowsA}.
153153
You first need to download the \pycharm\ Community Edition installation executable from \url{https://www.jetbrains.com/pycharm/download}.
154154
Make sure to download the Community Edition and nothing else, as shown in \cref{fig:installingPyCharmWindows01download,fig:installingPyCharmWindows02download,fig:installingPyCharmWindows03download}.
155155
Once the installer is downloaded, you start it and confirm that you wish to install \pycharm, as illustrated in \cref{fig:installingPyCharmWindows05runInstaller,fig:installingPyCharmWindows06runInstaller,fig:installingPyCharmWindows07runInstaller,fig:installingPyCharmWindows08runInstaller}.

text/main/basics/gettingStarted/installingPython/installingPythonWindows/installingPythonWindows.tex

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%
33
\begin{figure}%
44
\centering%
5-
\subfloat[][Opening the \pgls{terminal} under \windows: \windowsTerminal.]{%
5+
\subfloat[][Opening the \pgls{terminal} under \microsoftWindows: \windowsTerminal.]{%
66
\label{fig:installingPythonWindows01openTerminal}%
77
\tightbox{\includegraphics[height=2.8cm]{\currentDir/installingPythonWindows01openTerminal}}%
88
}%
@@ -47,14 +47,14 @@
4747
\tightbox{\includegraphics[height=4cm]{\currentDir/installingPythonWindows07pythonVersion}}%
4848
}%
4949
%
50-
\caption{Cropped screenshots of the installation steps for \python\ on \windows.}%
50+
\caption{Cropped screenshots of the installation steps for \python\ on \microsoftWindows.}%
5151
\label{fig:installPythonWindows}%
5252
\end{figure}%
5353
%
54-
Example installation steps for \python\ on \windows\ (version~10) are sketched in \cref{fig:installPythonWindows}.
54+
Example installation steps for \python\ on \microsoftWindows\ (version~10) are sketched in \cref{fig:installPythonWindows}.
5555
First, you would open a \pgls{terminal} using and \windowsTerminal, as shown in \cref{fig:installingPythonWindows01openTerminal}.
5656
If \python\ is installed, then typing \bashil{python3 --version} in the terminal and hitting \keys{\return} would print the version of the \python\ installation.
57-
If it is not installed, however, then \windows\ will print a message informing you that \python\ is not yet installed and that you can reach the web installer by just typing \bashil{python3} (and hitting \keys{\return}, of course).0
57+
If it is not installed, however, then \microsoftWindows\ will print a message informing you that \python\ is not yet installed and that you can reach the web installer by just typing \bashil{python3} (and hitting \keys{\return}, of course).0
5858
We do this in \cref{fig:installingPythonWindows03python}, which leads us to the installation screen (\cref{fig:installingPythonWindows04installGet}), where we need to press the \keys{Get} button.
5959
This will then download (\cref{fig:installingPythonWindows05downloading}) and install \python.
6060
When this process is completed, the screen just shows nothing (\cref{fig:installingPythonWindows06finished}).

text/main/basics/gettingStarted/pythonInTheTerminal/pythonInTheTerminal.tex

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
\centering%
77
%
88
\subfloat[][%
9-
Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \windows\ \windowsTerminal). %
9+
Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \microsoftWindows\ \windowsTerminal). %
1010
Change into the directory \inQuotes{directory} where your \python\ file is located, by typing \bashil{cd directory} and hit \keys{\enter}.%
1111
\label{fig:terminalPython1cd}%
1212
]{\includegraphics[width=0.9\linewidth]{\currentDir/terminalPython1cd}}%
@@ -72,7 +72,7 @@
7272
\centering%
7373
%
7474
\subfloat[][%
75-
Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \windows\ \windowsTerminal), enter \bashil{python3}, then hit \keys{\enter}.%
75+
Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \microsoftWindows\ \windowsTerminal), enter \bashil{python3}, then hit \keys{\enter}.%
7676
\label{fig:terminalConsole1python}%
7777
]{\includegraphics[width=0.852\linewidth]{\currentDir/terminalConsole1python}}%
7878
%
@@ -146,10 +146,10 @@
146146
\label{sec:terminalPython}%
147147
In order to directly execute a \python\ program in a \pgls{terminal}, we first need to open one.
148148
Under \ubuntu\ \linux, we simply press \ubuntuTerminal.
149-
Under \windows, we have to \windowsTerminal.
149+
Under \microsoftWindows, we have to \windowsTerminal.
150150
Once the terminal is open, we need to change into the directory where the program is located.
151-
Under both \linux\ and \windows, this can be done by typing the command \bashil{cd}, followed by the path to the directory, and hitting \keys{\enter}.\footnote{%
152-
Under \windows, you may also need to change into the correct drive first.}
151+
Under both \linux\ and \microsoftWindows, this can be done by typing the command \bashil{cd}, followed by the path to the directory, and hitting \keys{\enter}.\footnote{%
152+
Under \microsoftWindows, you may also need to change into the correct drive first.}
153153
We provide a screenshot for that, taken under \ubuntu\ \linux, in \cref{fig:terminalPython1cd}.
154154
Now we simply call the \python\ interpreter by writing \bashil{python3} followed by the file name of our program, which is \bashil{very_first_program.py} in our case.
155155
In \cref{fig:terminalPython2python} we do this and hit \keys{\enter}, which causes the \python\ interpreter to execute our program.
@@ -177,7 +177,7 @@
177177
Let us now open a \python\ console from the \pgls{terminal} instead of using the one in \pycharm.
178178
We therefore first need to open a normal terminal.
179179
Under \ubuntu\ \linux, we simply press \ubuntuTerminal.
180-
Under \windows, we have to \windowsTerminal.
180+
Under \microsoftWindows, we have to \windowsTerminal.
181181
Either way, the terminal opens and we can enter \bashil{python3} and press \keys{\enter}, as shown in \cref{fig:terminalConsole1python}.
182182
Now the \python\ interpreter starts right inside the \pgls{terminal}~(\cref{fig:terminalConsole2pythonRunning}).
183183
The prompt, i.e., the place where we can write our code, again is preceded by the \bashil{>>>} characters.
@@ -188,7 +188,7 @@
188188
We type in \pythonil{exit()} and press \keys{\enter}, as shown in \cref{fig:terminalConsole5exit}, which causes the \python\ interpreter to exit.
189189
We are now back in the basic terminal, as shown in \cref{fig:terminalConsole6left}.
190190
In these figures, I was using \ubuntu\ \linux.
191-
On \windows\ or other \linux\ variants, the process would have looked quite similar.%
191+
On \microsoftWindows\ or other \linux\ variants, the process would have looked quite similar.%
192192
\endhsection%
193193
%
194194
\bestPractice{runningProgram}{The only proper way to run a \python\ application in a productive scenario is in the terminal, as shown in \cref{sec:terminalPython}.}%

text/main/basics/simpleDataTypesAndOperations/int/int.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
\end{figure}%
3030

3131
In \cref{fig:pythonIntMathInConsoleArith}, you can find some examples for this.
32-
Like back in \cref{sec:terminalConsolem}, press \ubuntuTerminal\ under \ubuntu\ \linux\ or \windowsTerminal\ under \windows\ to open a \pgls{terminal}.
32+
Like back in \cref{sec:terminalConsolem}, press \ubuntuTerminal\ under \ubuntu\ \linux\ or \windowsTerminal\ under \microsoftWindows\ to open a \pgls{terminal}.
3333
After entering \bashil{python3} and hitting \keys{\enter}, we can begin experimenting with integer maths.
3434
The lines with \python\ commands in the console begin with \pythonil{>>>}, whereas the result is directly output below them without prefix string.
3535

text/main/basics/simpleDataTypesAndOperations/str/str.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
Another situation where escape sequences are nice is when we want to have strings that span over multiple lines\pythonIdx{str!escaping}\pythonIdx{escaping}.
365365
The newline sequence \inQuotes{\textbackslash{n}}\pythonIdx{\textbackslash{n}} represents a \inQuotes{newline character} which causes the console to skip to the next line.
366366
\pythonil{print("Hello\\nWorld!")} will first print \textil{Hello}, then end the current line and begin a new line, and then print \textil{World!}.
367-
Notice that the newline character sequence \inQuotes{\textbackslash{n}} is used in \linux\ and similar systems, whereas \windows\ uses \inQuotes{\textbackslash{r}\textbackslash{n}}\pythonIdx{\textbackslash{r}\textbackslash{n}}.
367+
Notice that the newline character sequence \inQuotes{\textbackslash{n}} is used in \linux\ and similar systems, whereas \microsoftWindows\ uses \inQuotes{\textbackslash{r}\textbackslash{n}}\pythonIdx{\textbackslash{r}\textbackslash{n}}.
368368
Under \python, both always work, regardless under which operating system you are working, and you should \emph{always} use \inQuotes{\textbackslash{n}}.
369369
However, only for the sake of completeness, I include the example \pythonil{print("Hello\\r\\nWorld!")} as well, which produces the same output as \pythonil{print("Hello\\nWorld!")}.
370370

text/main/basics/variables/typesAndTypeHints/typesAndTypeHints.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

101101
In \python, which allows for dynamic typing and is an interpreted language, we will use a tool like \mypy~\cite{LLHSVRZSJYYMC2024MOSTFP}.
102102
You can install this tool by opening a terminal.
103-
Under \ubuntu, you therefore press \ubuntuTerminal, and under \windows, you \windowsTerminal.
103+
Under \ubuntu, you therefore press \ubuntuTerminal, and under \microsoftWindows, you \windowsTerminal.
104104
Then type in \bashil{pip install mypy}\pythonIdx{Mypy}\pythonIdx{pip} and hit \keys{\enter}.
105105
The \mypy\ tool will be installed as illustrated in \cref{fig:pipInstallMypy}.
106106

text/main/ecosystem/git/gitClone/gitCloneClient/gitCloneClient.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
Here, we simply assume that you already have it installed the \git\ \pgls{client} program~\bashil{git}.
5858

5959
In \cref{fig:gitCloneClient}, we illustrate how the \git\ \pgls{client} program is used under \ubuntu\ \linux.
60-
Under Microsoft \windows, it will work analogously.
60+
Under \microsoftWindows, it will work analogously.
6161
First, we need to open a \pgls{terminal} window.
6262
Under \ubuntu\ \linux, we therefore press \ubuntuTerminal.
63-
Under \windows, we instead \windowsTerminal.
63+
Under \microsoftWindows, we instead \windowsTerminal.
6464
We then enter the directory into which we want to download the repository using~\bashil{cd}.
6565
Notice that if we download a repository with the name~\textil{abc}, this will create a new directory named~\textil{abc} inside that current working directory.
6666

0 commit comments

Comments
 (0)