diff --git a/_sources/lectures/TWP30/TWP30_7_en.rst b/_sources/lectures/TWP30/TWP30_7_en.rst index 19d3ff09ed..8e85d51071 100644 --- a/_sources/lectures/TWP30/TWP30_7_en.rst +++ b/_sources/lectures/TWP30/TWP30_7_en.rst @@ -1,15 +1,15 @@ Python Tools ====================== -+ Conditions: ``if``, ``elif``, ``else`` -+ Loop: ``while`` -+ Assignment operator: ``=`` -+ Equality operator: ``==`` -+ Inequality operator: ``!=`` -+ Display a message: ``print()`` -+ Read user input: ``input()`` -+ Convert to integer: ``int()`` -+ Generate a random integer: ``randint()`` ++ Conditions: Utilized ``if``, ``elif``, and ``else`` for conditional statements. ++ Looping: Employed the ``while`` keyword for loop iterations. ++ Assignment operator: Used ``=`` for assigning values to variables. ++ Equality operator: Checked for equality using ``==``. ++ Inequality operator: Determined inequality with ``!=``. ++ Message display: Output messages with the ``print()`` function. ++ User input: Acquired user input using ``input()``. ++ Integer conversion: Converted input to integers using ``int()``. ++ Random integer generation: Produced random integers with ``randint()``. These are some of the tools. There are many more!