@WorldNews · Post #73854 · 04.04.2026 г., 06:54
Trump said Iran was 'decimated.' Then an American F-15E fighter jet was shot down. [Read FullArticle] @WorldNews#IranNews#USIranConflict#WorldNews
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #83 · 11 мај
У строки в Python есть два очень похожих метода. На столько похожих что кажется они делают одно и тоже. Это метод isdigit() и isnumeric() Давайте посмотрим зачем нам два одинаковых метода? И так ли они одинаковы? Очевидно что isdigit() говорит нам, состоит ли строка только из чисел 0-9 >>> '12'.isdigit() True >>> '12x'.isdigit() False >>> '-12'.isdigit() False >>> '12.5'.isdigit() False Можно предположить что isnumeric() делает более глубокий анализ и распознаёт в строке float или отрицательное число. >>> '15'.isnumeric() True >>> '-15'.isnumeric() False >>> '15.2'.isnumeric() False Нет, всё так же как и с другим методом. В чем же тогда разница? Для начала посмотрим следующие примеры: >>> '5'.isdigit(), '5'.isnumeric() # Обычная цифра 5 # True, True >>> '꧕'.isdigit(), '꧕'.isnumeric() # Яванская 5 # True, True >>> '෩'.isdigit(), '෩'.isnumeric() # Синхала 3 # True, True >>> '৩'.isdigit(), '৩'.isnumeric() # Бенгальская 3 # True, True >>> '༣'.isdigit(), '༣'.isnumeric() # Тибетская 3 # True, True >>> '³'.isdigit(), '³'.isnumeric() # 3 верхний индекс (степень) # True, True >>> '𝟝'.isdigit(), '𝟝'.isnumeric() # Математическая двойная 5 # True, True >>> '๔'.isdigit(), '๔'.isnumeric() # Тайская 4 # True, True >>> '➑'.isdigit(), '➑'.isnumeric() # 8 в круге # True, True А теперь примеры в которых, по мнению Python, результаты не равны >>> '¾'.isdigit(), '¾'.isnumeric() # дробь три четверти # False, True >>> '⅕'.isdigit(), '⅕'.isnumeric() # дробь одна пятая # False, True >>> '𒐶'.isdigit(), '𒐶'.isnumeric() # клинопись 3 # False, True >>> '三'.isdigit(), '三'.isnumeric() # 3 из унифицированной идеограммы # False, True >>> '⑩'.isdigit(), '⑩'.isnumeric() # цифра 10 в круге # False, True >>> 'Ⅳ'.isdigit(), 'Ⅳ'.isnumeric() # Римская 4 # False, True >>> '𑇪'.isdigit(), '𑇪'.isnumeric() # Сенегальская архаическая 10 # False, True >>> '𐌢'.isdigit(), '𐌢'.isnumeric() # Этрусская цифра 10 # False, True >>> 'ↂ'.isdigit(), 'ↂ'.isnumeric() # Римская цифра 10000 # False, True >>> '〇'.isdigit(), '〇'.isnumeric() # Символ ККЯ ноль # False, True Получается, что isdigit() говорит нам, является ли символ десятичной цифрой или спецсимволом, имеющим цифирное значение после преобразования. В свою очередь isnumeric() включает все дополнительные символы юникода которые имеют отношения к числовым и цифровым представлениям. Ну и пара примеров в которых в обоих случаях символ не является числом, это эмодзи. >>> '🕙'.isdigit(), '🕙'.isnumeric() # эмодзи 10 часов # False, False >>> '7️⃣'.isdigit(), '7️⃣'.isnumeric() # эмодзи 7 # False, False Также есть еще один дополнительный и весьма полезный метод isdecimal(). Он нам сообщает, можно ли из указанного символа сделать простую десятичную цифру. То есть сработает ли метод int(x) >>> '෩'.isdecimal(), int('෩') # Синхала 3 # True, 3 >>> '➑'.isdecimal(), int('➑') # 8 в круге # False, ValueError Какие выводы? 🔸 При определении цифры в строке isdigit() подходит лучше чем isnumeric(), но оба не гарантируют успешную конвертацию в int 🔸 Для однозначного определения возможности преобразования строки в int лучше подходит метод isdecimal() 🔸 Для однозначного определения символов 0...9 лучше использовать regex Полный список символов юникода которые определяются как numeric #basic
Hashtags
Пребарај: #usiranconflict
@WorldNews · Post #73854 · 04.04.2026 г., 06:54
Trump said Iran was 'decimated.' Then an American F-15E fighter jet was shot down. [Read FullArticle] @WorldNews#IranNews#USIranConflict#WorldNews
@WorldNews · Post #73693 · 29.03.2026 г., 11:44
Iran ready to face US ground invasion, top lawmaker says | Caliber.Az [Read FullArticle] @WorldNews#IranNews#USIranConflict#WorldNews
@WorldNews · Post #73824 · 03.04.2026 г., 11:19
Trump threatens to destroy Iran bridges and power plants as reports emerge of downed U.S. F-35 [Read FullArticle] @WorldNews#IranNews#TrumpPolicy#USIranConflict
@WorldNews · Post #73593 · 25.03.2026 г., 12:14
Iran rejects Trump's 15-point peace plan: "You negotiate with yourself" — as airstrikes on Tehran and US bases in the Gulf escalate [Read FullArticle] @WorldNews#IranNews#USIranConflict#GulfSecurity
@WorldNews · Post #73738 · 31.03.2026 г., 01:29
Iran's strike wounded over a dozen U.S. personnel and hit valuable jets in Saudi Arabia [Read FullArticle] @WorldNews#IranNews#USIranConflict#SaudiArabiaSecurity
@WorldNews · Post #73538 · 23.03.2026 г., 04:19
5m tonnes of CO2 emitted in just 14 days of US war on Iran, analysis finds [Read FullArticle] @WorldNews#ClimateChange#USIRanConflict#CO2Emissions
@WorldNews · Post #73747 · 31.03.2026 г., 11:34
Poland says ‘no’ to sending Patriot missile launcher to help US fight Iran [Read FullArticle] @WorldNews#PolandNews#PatriotMissile#USIranConflict
@WorldNews · Post #74466 · 30.04.2026 г., 13:19
US set for first-ever use of Hypersonic Weapons in combat against Iran [Read FullArticle] @WorldNews#HypersonicWeapons#USIranConflict#MilitaryTechnology
@CryptoM · Post #65325 · 12.04.2026 г., 23:14
🚀 Expert: Bitcoin's Stability Amid U.S.-Iran Conflict Highlights Its Potential Anthony Pompliano highlighted Bitcoin's role as a beacon of hope during the U.S.-Iran conflict. According to NS3.AI, Pompliano noted that while stocks, bonds, and gold experienced sell-offs, Bitcoin remained stable or even rose slightly. He emphasized that Bitcoin's lower volatility and neutrality could bolster investor demand during times of geopolitical uncertainty. #Bitcoin#Cryptocurrency#Geopolitics#USIranConflict#FinancialStability#InvestorDemand#MarketVolatility#DigitalAssets#BTC
@CryptoM · Post #64559 · 09.04.2026 г., 08:01
🚀 CPI Faces Critical Test Amid Inflation Concerns The upcoming Consumer Price Index (CPI) report is set to be a decisive factor in assessing inflation trends, as consensus builds around a significant rebound in inflation. According to Jin10, the breadth of the energy shock will play a crucial role in determining the intensity of market impacts. The ongoing conflict between the U.S. and Iran has influenced the CPI statistics for March, with energy premiums potentially limiting the Federal Reserve's ability to cut interest rates. There is a risk that inflation expectations may become unanchored, raising questions about whether price pressures are a one-time shock or have spread to other sectors. #CPI#Inflation#EnergyShock#FederalReserve#InterestRates#USIranConflict#MarketImpact#PricePressure
@CryptoM · Post #65326 · 12.04.2026 г., 23:14
🚀 Expert Predicts U.S.-Iran Conflict Impact on Crypto Markets Until 2026 Nic Puckrin has expressed concerns that the ongoing U.S.-Iran conflict could negatively affect cryptocurrency markets until 2026. According to NS3.AI, Puckrin believes that Bitcoin's recovery to $90,000 would require several favorable conditions. He also noted that a Federal Reserve rate cut is unlikely to occur before late Q3 or Q4, and it may not happen at all this year. #USIranConflict#CryptoMarkets#Bitcoin#Cryptocurrency#FederalReserve#MarketPrediction#2026Impact#BitcoinRecovery#BTC
@CryptoM · Post #64459 · 09.04.2026 г., 01:08
🚀 Korean Won Expected to Rebound Amid Lower Oil Prices and Stock Inflows The Korean won is anticipated to recover to levels observed prior to the US-Iran conflict in the second quarter, according to strategists. Bloomberg posted on X, highlighting factors such as declining oil prices and increased foreign investments in stocks as key drivers for this potential rebound. Analysts suggest that these economic conditions could bolster the won's value, reversing the currency's previous downturn. #KoreanWon#OilPrices#StockInflows#USIranConflict#CurrencyRebound#ForeignInvestments#EconomicConditions