From cad6375d3e36538ab44a5bdd1fbbf5acd420fc1b Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sat, 27 Nov 2021 22:28:12 +0100 Subject: python: initial notes --- src/SUMMARY.md | 1 + src/development/README.md | 1 + src/development/python.md | 114 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 116 insertions(+) create mode 100644 src/development/python.md (limited to 'src') diff --git a/src/SUMMARY.md b/src/SUMMARY.md index ec1e592..9fc21db 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -45,6 +45,7 @@ - [gcc](./development/gcc.md) - [make](./development/make.md) - [ld.so](./development/ld.so.md) + - [python](./development/python.md) - [Arch](./arch/README.md) - [x86_64](./arch/x86_64.md) diff --git a/src/development/README.md b/src/development/README.md index 2446271..29a0c11 100644 --- a/src/development/README.md +++ b/src/development/README.md @@ -6,3 +6,4 @@ - [gcc](./gcc.md) - [make] (./make.md) - [ld.so](./ld.so.md) +- [python](./python.md) diff --git a/src/development/python.md b/src/development/python.md new file mode 100644 index 0000000..2a15ffa --- /dev/null +++ b/src/development/python.md @@ -0,0 +1,114 @@ +# python + +## Decorator [[run][run-decorator]] +Some decorator examples with type annotation. + +```python +from typing import Callable + +def log(f: Callable[[int], None]) -> Callable[[int], None]: + def inner(x: int): + print(f"log::inner f={f.__name__} x={x}") + f(x) + return inner + +@log +def some_fn(x: int): + print(f"some_fn x={x}") + + +def log_tag(tag: str) -> Callable[[Callable[[int], None]], Callable[[int], None]]: + def decorator(f: Callable[[int], None]) -> Callable[[int], None]: + def inner(x: int): + print(f"log_tag::inner f={f.__name__} tag={tag} x={x}") + f(x) + return inner + return decorator + +@log_tag("some_tag") +def some_fn2(x: int): + print(f"some_fn2 x={x}") +``` + +## Walrus operator [[run][run-walrus]] +Walrus operator `:=` added since **python 3.8**. +```python +from typing import Optional + +# Example 1: if let statements + +def foo(ret: Optional[int]) -> Optional[int]: + return ret + +if r := foo(None): + print(f"foo(None) -> {r}") + +if r := foo(1337): + print(f"foo(1337) -> {r}") + +# Example 2: while let statements + +toks = iter(['a', 'b', 'c']) +while tok := next(toks, None): + print(f"{tok}") + +# Example 3: list comprehension + +print([tok for t in [" a", " ", " b "] if (tok := t.strip())]) +``` + +## [Unittest][doc-unittest] [[run][run-unittest]] +Run unittests directly from the command line as \ +`python3 -m unittest -v test` + +Optionally pass `-k ` to only run subset of tests. +```python +# file: test.py + +import unittest + +class MyTest(unittest.TestCase): + def setUp(self): + pass + def tearDown(self): + pass + # Tests need to start with the prefix 'test'. + def test_foo(self): + self.assertEqual(1 + 2, 3) + def test_bar(self): + with self.assertRaises(IndexError): + list()[0] +``` + +## [Doctest][doc-doctest] [[run][run-doctest]] +Run doctests directly from the command line as \ +`python -m doctest -v test.py` + +```python +# file: test.py + +def sum(a: int, b: int) -> int: + """Sum a and b. + + >>> sum(1, 2) + 3 + + >>> sum(10, 20) + 30 + """ + return a + b +``` + +## [timeit][doc-timeit] +Micro benchmarking. +```bash +python -m timeit '[x.strip() for x in ["a ", " b"]]' +``` + +[run-decorator]: https://www.online-python.com/IDdiE0gpYU +[run-walrus]: https://www.online-python.com/9T12PvmKVy +[doc-unittest]: https://docs.python.org/3/library/unittest.html +[run-unittest]: https://www.online-python.com/2fit4UcbzI +[doc-doctest]: https://docs.python.org/3/library/doctest.html +[run-doctest]: https://www.online-python.com/LZst51UNIH +[doc-timeit]: https://docs.python.org/3/library/timeit.html -- cgit v1.2.3