Skip to content

Commit 7ff854c

Browse files
committed
minor error fixed
1 parent 4a30ec7 commit 7ff854c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Die Slides zum Kurs in deutscher Sprache können unter <https://thomasweise.gith
3232
7. [Der Datentyp `int`](https://thomasweise.github.io/programmingWithPythonSlidesDE/07_int.pdf)
3333
8. [Der Datentyp `float`](https://thomasweise.github.io/programmingWithPythonSlidesDE/08_float.pdf)
3434
9. [Zwischenspiel: Python Dokumentation und Informationsquellen](https://thomasweise.github.io/programmingWithPythonSlidesDE/09_dokumentation.pdf)
35+
10. [Der Datentyp `bool`](https://thomasweise.github.io/programmingWithPythonSlidesDE/10_bool.pdf)
3536

3637
### 2.3. The Slides in English
3738
The slides for the course are available at <https://thomasweise.github.io/programmingWithPythonSlides> and also listed below.

bookbase

text/main/basics/simpleDataTypesAndOperations/bool/bool.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
\label{sec:bool}%
33
%
44
Before, we already mentioned comparisons and their results, which can either be \pythonilIdx{True} or \pythonilIdx{False}.
5-
These two values constitute another basic datatype in \python: \pythonilIdx{bool}.
6-
They are fundamental for making decisions in a program, i.e., for deciding what to do based on data.
5+
These two values constitute another basic datatype in \python:~\pythonilIdx{bool}.
6+
The two values of this type are fundamental for making decisions in a program, i.e., for deciding what to do based on data.%
77
%
88
\hsection{Comparisons}%
99
%
@@ -131,7 +131,7 @@
131131
%
132132
\item A Boolean conjunction\pythonIdx{bool!conjunction}, i.e., \pythonilIdx{and}, is \pythonilIdx{True} if and only both of its operands are also \pythonilIdx{True} and \pythonilIdx{False} otherwise, as shown in \cref{fig:booleanAnd}.%
133133
%
134-
\item A Boolean disjunction\pythonIdx{bool!disjunction}, i.e., \pythonilIdx{and}, is \pythonilIdx{True} if at least one of its two operands is \pythonilIdx{True} and \pythonilIdx{False} otherwise, as shown in \cref{fig:booleanOr}.%
134+
\item A Boolean disjunction\pythonIdx{bool!disjunction}, i.e., \pythonilIdx{or}, is \pythonilIdx{True} if at least one of its two operands is \pythonilIdx{True} and \pythonilIdx{False} otherwise, as shown in \cref{fig:booleanOr}.%
135135
%
136136
\item The Boolean negation\pythonIdx{bool!negation}, i.e., \pythonilIdx{not}, is \pythonilIdx{True} if its operand is \pythonilIdx{False}. %
137137
Otherwise, it is \pythonilIdx{False}, as shown in \cref{fig:booleanNot}.%

0 commit comments

Comments
 (0)