python-typing-koans
python-typing-koans copied to clipboard
Python typing koans to learn type-hints in Python3 using Mypy
The comments mention another way of typing the solution. My solution is as follows: ``` """ Koan to learn annotating the Python list of various type of elements """ from...
My might say that `dry-python/returns` is one of the most typing-intensive project in Python-land. It might be a good idea to add some expert-level koans about it. Like: - Working...
Hi! I see that you are already using `django-stubs` and `drf-stubs` which is awesome! But, looks like this koan does miss plugin definitions: https://github.com/kracekumar/python-typing-koans/blob/main/koans/dj_koans/mysite/mypy.ini Is it intended? Thanks!
Hey @kracekumar, Thanks for taking the time to reply to all my past queries. I'm a little stuck on 114 and was wondering if you could provide a hint or...
For task 110 I had to rename the last variable from `user` to `new_user` as I'd previously received an error stating that we can't assign a type to a variable...
Would just like to verify solution Here's mine: https://github.com/J0/python-typing-koans/blob/main/koans/py/117-easy-protocol-across-objects.py Happy to hear if others have cleaner solutions.
Hey! Thank you for creating this repository and responding so swiftly over chat. This set of Koans helped me to better understand type hints in Python There were some sections...