В продолжение прошлого поста про цифры в мире строк.
Почему методы isdigit() и isnumeric() не определяют в строке float и отрицательные значения?
Дело в том, что эти методы работают с ЦИФРАМИ, то есть с единичным символом. А строка "-2" или "3.4" это уже ЧИСЛО. То есть не символ а значение, записанное несколькими символами.
Все озвученные методы проходятся по каждому символу строки и проверяют их индивидуально.
В юникоде есть символы цифр с точками "🄀⒈⒉⒊⒋⒌⒍⒎⒏⒐"
Каждая из них это ОДИН СИМВОЛ, поэтому он будет считаться цифрой
>>> '⒌'.isdigit(), '⒌'.isnumeric()
True, True
Но когда мы пишем это выражение в два символа ( 5+точка), то это не работает.
>>> '5.'.isdigit(), '5.'.isnumeric()
False, False
А еще есть такие символы
>>> '⑴⑵⑶⑷⑸'.isdigit()
True
>>> '🄁🄂🄃'.isdigit()
True
Но они не преобразуются в десятичные цифры
>>> '⒈'.isdecimal()
False
>>> '🄃'.isdecimal()
False
>>> '⑶'.isdecimal()
False
#basic
🌍 Some savannas and grasslands support massive termite mounds reaching over 8 meters high. These structures regulate temperature and moisture, acting as tiny skyscrapers for entire insect communities. ✨
#savanna⚡#grassland⚡#biodiversity⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 In South America’s Cerrado grassland, more than 4,800 plant species are found only there. This savanna rivals the Amazon in biodiversity but is rapidly disappearing to farmland. ✨
#savanna⚡#grassland⚡#biodiversity⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Some African savannas are home to "whistling thorn" trees, which grow hollow spines. Tiny ants live inside and defend the tree from animals, forming a team-up rarely seen in grassland ecosystems. ✨
#savanna⚡#grassland⚡#biodiversity⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 Tropical savannas can burn naturally every 1–3 years, yet some species, like the baobab tree, thrive by storing water in thick trunks to survive both drought and fire. ✨
#savanna⚡#grassland⚡#adaptation⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Seasonal fires in some savannas are so regular that certain plants have evolved to flower or sprout only after being scorched, using fire as a natural part of their life cycle. ✨
#savanna⚡#grassland⚡#fire⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Some grassland fires are started by lightning and play a natural role in shaping these ecosystems. Fire clears old growth, helps seeds sprout, and maintains open habitat for many animals. ✨
#savanna⚡#grassland⚡#fire⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍