Add ThreadPoolExecture/README.md

This commit is contained in:
2024-12-20 04:15:38 +00:00
parent 4adf1e37a3
commit 34ec8b6652

View File

@@ -0,0 +1,6 @@
Exception catched
```python
__import__('concurrent').futures.ThreadPoolExecutor().submit(
lambda x: (print(x * 2) or x ** 2 / 0), 3).result()
```