10 Python Errors Explained In 15 Minutes

10 Python Errors Explained In 15 Minutes

Indently

6 месяцев назад

13,754 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@staywithmeforever
@staywithmeforever - 15.08.2024 14:11

Thanks 🙏

Ответить
@cocoatea57
@cocoatea57 - 15.08.2024 15:05

We'll learn today

Ответить
@DelphineDofain
@DelphineDofain - 15.08.2024 15:09

Bridges and indentations: the bane of architects...

Ответить
@rootytuners
@rootytuners - 19.08.2024 01:15

Type hinting: I just can’t see the appeal. For my taste, they complicate readability in most cases. 🤷‍♀️

Ответить
@anon_y_mousse
@anon_y_mousse - 19.08.2024 13:29

One thing to note about IndentationError, is that you can get it from mixing tabs and spaces to indent, or even using extra spaces here and there. I always recommend that people set their editor to auto-insert spaces at their desired tab width and to only ever use spaces for indentation, but that may just be me.

Ответить
@kapibara2440
@kapibara2440 - 20.08.2024 22:11

I really like your content, thank you 😊

Ответить
@69k_gold
@69k_gold - 23.08.2024 05:32

Your ideas for the videos are pretty cool

Ответить
@DrDeuteron
@DrDeuteron - 27.08.2024 04:04

Note that not having an attribute doesn’t always raise an AttributeError, since a failed lookup causes python to then check the dunder getattr method for resolution.

Which is different from dunder getattribute. Stay away from that one unless you like Recursion depth exceeded errors.

Ответить
@vishnujatav6329
@vishnujatav6329 - 29.08.2024 05:08

Really really useful content. Thanks

Ответить
@amaarquadri
@amaarquadri - 23.10.2024 07:00

You can actually have multiple statements in one line... with semicolons.
def foo(): bar = 0; return bar

Ответить
@Dasycottus
@Dasycottus - 21.01.2025 17:02

Python is actually just a chain of infinite exceptions disguised as a programming language

Ответить