В продолжение прошлого поста про цифры в мире строк.
Почему методы 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
😄Bear
➖➖➖➖➖➖
🔘When we use bear as a noun, it's the animal’. As a verb, it has different meanings.
🔘Literally it can me 'to support weight'
🔜The bridge was designed to bear 100 tonnes.
🔘Figuratively, we can use it to mean 'to put up with' or 'to tolerate'
🔜The pain was too much to bear.
🔘 Another literal meaning of bear is 'to carry something' and we use this figuratively in the expression to bear in mind which means 'to think about' or 'to remember'.
🔜Bear in mind the deadline is today - you need to work quickly!
#Bear👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
😄Bear
➖➖➖➖➖➖
🔘When we use bear as a noun, it's the animal’. As a verb, it has different meanings.
🔘Literally it can me 'to support weight'
🔜The bridge was designed to bear 100 tonnes.
🔘Figuratively, we can use it to mean 'to put up with' or 'to tolerate'
🔜The pain was too much to bear.
🔘 Another literal meaning of bear is 'to carry something' and we use this figuratively in the expression to bear in mind which means 'to think about' or 'to remember'.
🔜Bear in mind the deadline is today - you need to work quickly!
#Bear👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys