Интроспекция — это способность программы изучать объекты во время выполнения: узнавать их тип, структуру, атрибуты, методы и даже иерархию наследования.
🧩 Это мощный инструмент, встроенный в Python (а также доступный в других языках, например Java, PHP, Ruby). Он позволяет, например:
— Проверить тип объекта с помощью type() — Проверить, к какому классу принадлежит объект — isinstance(obj, Class) — Получить список доступных атрибутов и методов — dir(obj) — Изучить содержимое объекта — через __dict__
Пример:
class Foo: def __init__(self, val): self.x = val def bar(self): return self.x
obj = Foo(5) print(dir(obj))
Результат:
['__class__', '__dict__', ..., 'bar', 'x']
Это удобно для отладки, разработки, рефлексии, создания универсальных функций, которые могут работать с разными типами данных.
Интроспекция — это способность программы изучать объекты во время выполнения: узнавать их тип, структуру, атрибуты, методы и даже иерархию наследования.
🧩 Это мощный инструмент, встроенный в Python (а также доступный в других языках, например Java, PHP, Ruby). Он позволяет, например:
— Проверить тип объекта с помощью type() — Проверить, к какому классу принадлежит объект — isinstance(obj, Class) — Получить список доступных атрибутов и методов — dir(obj) — Изучить содержимое объекта — через __dict__
Пример:
class Foo: def __init__(self, val): self.x = val def bar(self): return self.x
obj = Foo(5) print(dir(obj))
Результат:
['__class__', '__dict__', ..., 'bar', 'x']
Это удобно для отладки, разработки, рефлексии, создания универсальных функций, которые могут работать с разными типами данных.
The S&P 500 slumped 1.8% on Monday and Tuesday, thanks to China Evergrande, the Chinese property company that looks like it is ready to default on its more-than $300 billion in debt. Cries of the next Lehman Brothers—or maybe the next Silverado?—echoed through the canyons of Wall Street as investors prepared for the worst.
How to Buy Bitcoin?
Most people buy Bitcoin via exchanges, such as Coinbase. Exchanges allow you to buy, sell and hold cryptocurrency, and setting up an account is similar to opening a brokerage account—you’ll need to verify your identity and provide some kind of funding source, such as a bank account or debit card. Major exchanges include Coinbase, Kraken, and Gemini. You can also buy Bitcoin at a broker like Robinhood. Regardless of where you buy your Bitcoin, you’ll need a digital wallet in which to store it. This might be what’s called a hot wallet or a cold wallet. A hot wallet (also called an online wallet) is stored by an exchange or a provider in the cloud. Providers of online wallets include Exodus, Electrum and Mycelium. A cold wallet (or mobile wallet) is an offline device used to store Bitcoin and is not connected to the Internet. Some mobile wallet options include Trezor and Ledger.