135201
You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython
How much korrupt workers of o2 poland i have to Report to make the concern bankrott
Читать полностью…
I use them especially because i have really short memory
Читать полностью…
That’s smart, keeps things clear in your head. Do you find it helps catch errors early? If you want, I can share some tips on organizing your code better.
Читать полностью…
Type annotations are more like a guide for the tools and us to understand what kind of data we're working with, rather than something the program enforces at runtime
Читать полностью…
Exactly, type annotations are meant for variables, not for the actual values inside data structures
Читать полностью…
technically that doesn't make sense, and you'll never need it
Читать полностью…
because typings meant to be applied to variables, not values
Читать полностью…
I have a project and I'm not very sure how to do it. Can someone help me?
Читать полностью…
Hi i wanted to ask if somone knows whats the best book for beginners in python i only know pseudocode
Читать полностью…
looks like you need an offtopic group, please delete the off-topic message(s) and continue this conversation at @pythonofftopic
Читать полностью…
Hey, what is your favourite python library from the stdlib?
Читать полностью…
So i never remember what something does and requires
Читать полностью…
That’s smart, I do the same to keep my projects straight, especially when juggling multiple things!
Читать полностью…
i use them really a lot to remember always on what i'm working in that moment
Читать полностью…
If you want to specify types for values, you'd typically use something like Dict[str, Union[int, Callable]], but it’s more about documentation and static analysis
Exactly, type annotations are for variables, not the actual values inside dicts.
Читать полностью…
yeah yeah i used it now... if i understood right, u can't write type annotations directly inside the dictionary maps
Читать полностью…