Iterable - это объект по которому можно пройтись. Для питона это любой объект у которого есть метод __iter__ или __getitem__.
Чтобы преобразовать какой то объект в list, нужно проитерироваться по объекту, т.е. вызвать iter(iterable). Первым делом смотриться метод __iter__, если он возвращает iterator, то переберая все элементы итератора строиться list. Но если у объекта нет метода __iter__, но есть метод __getitem__, то создается iterator на основе этого метода. В метод __getitem__ по очередно передаются индексы (просто числа) от 0 до момента пока __getitem__ не выбросит ошибку StopIteration или IndexError.
Для чего это нужно? На самом деле это очень старый механизм и в реальности почти не нужный. Так называемая "legacy feature". Но может быть полезен, когда у вас есть какой то объект и вы хотите как то проитерироваться по нему.
class Library: def __init__(self, books: list): self.books = books
Iterable - это объект по которому можно пройтись. Для питона это любой объект у которого есть метод __iter__ или __getitem__.
Чтобы преобразовать какой то объект в list, нужно проитерироваться по объекту, т.е. вызвать iter(iterable). Первым делом смотриться метод __iter__, если он возвращает iterator, то переберая все элементы итератора строиться list. Но если у объекта нет метода __iter__, но есть метод __getitem__, то создается iterator на основе этого метода. В метод __getitem__ по очередно передаются индексы (просто числа) от 0 до момента пока __getitem__ не выбросит ошибку StopIteration или IndexError.
Для чего это нужно? На самом деле это очень старый механизм и в реальности почти не нужный. Так называемая "legacy feature". Но может быть полезен, когда у вас есть какой то объект и вы хотите как то проитерироваться по нему.
class Library: def __init__(self, books: list): self.books = books
At a time when the Indian stock market is peaking and has rallied immensely compared to global markets, there are companies that have not performed in the last 10 years. These are definitely a minor portion of the market considering there are hundreds of stocks that have turned multibagger since 2020. What went wrong with these stocks? Reasons vary from corporate governance, sectoral weakness, company specific and so on. But the more important question is, are these stocks worth buying?
The lead from Wall Street offers little clarity as the major averages opened lower on Friday and then bounced back and forth across the unchanged line, finally finishing mixed and little changed.The Dow added 33.18 points or 0.10 percent to finish at 34,798.00, while the NASDAQ eased 4.54 points or 0.03 percent to close at 15,047.70 and the S&P 500 rose 6.50 points or 0.15 percent to end at 4,455.48. For the week, the Dow rose 0.6 percent, the NASDAQ added 0.1 percent and the S&P gained 0.5 percent.The lackluster performance on Wall Street came on uncertainty about the outlook for the markets following recent volatility.