diff --git a/python_basics/basic_math_operations/README.md b/python_basics/basic_math_operations/README.md index fa09958..f24e128 100644 --- a/python_basics/basic_math_operations/README.md +++ b/python_basics/basic_math_operations/README.md @@ -33,15 +33,16 @@ a_second_number = 3.33​ a_second_number = int(a_second_number)​ print(type(a_second_number))​ # -> ​ ``` -Examples are here: -* [float(x=0.0)](https://docs.python.org/3/library/functions.html#float) -* [bin(x)](https://docs.python.org/3/library/functions.html#bin) -* [bool(x=False)](https://docs.python.org/3/library/functions.html#bool) -* [bytes(source=b'')](https://docs.python.org/3/library/functions.html#func-bytes) -* [complex(real=0, imag=0)](https://docs.python.org/3/library/functions.html#complex) -* [hex(x)](https://docs.python.org/3/library/functions.html#hex) -* [int(x=0)](https://docs.python.org/3/library/functions.html#int) -* [str(object='')](https://docs.python.org/3/library/functions.html#func-str) +|Examples| +|---| +|[float(x=0.0)](https://docs.python.org/3/library/functions.html#float)| +|[bin(x)](https://docs.python.org/3/library/functions.html#bin)| +|[bool(x=False)](https://docs.python.org/3/library/functions.html#bool)| +|[bytes(source=b'')](https://docs.python.org/3/library/functions.html#func-bytes)| +|[complex(real=0, imag=0)](https://docs.python.org/3/library/functions.html#complex)| +|[hex(x)](https://docs.python.org/3/library/functions.html#hex)| +|[int(x=0)](https://docs.python.org/3/library/functions.html#int)| +|[str(object='')](https://docs.python.org/3/library/functions.html#func-str)| ## [Basic math operations​](https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex​)