Check if All the (And How Many, Length of a String) Characters in the Text are Digits/Numbers - Python for Integrated Circuits - - An Online Book - |
||||||||
| Python for Integrated Circuits http://www.globalsino.com/ICs/ | ||||||||
| Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix | ||||||||
================================================================================= To exame a string is a real number or float number or not (AAA): code: ============================================ Check if all the characters in the text are digits: need to convert it to a string before checking (AAA: this is the best way to check if the string is an integer or not. If it is an integer, then use int(x) to ensure the variable is in integer type): code: ============================================ Remove dot to check if it not a string (to ensure it is a float or integer):: Need to convert the item to string first (AAA: this is the best way to check if the "string" is not a real string but it is a foat or interger.): code: ============================================ Check if all the characters in the text are digits: code: ============================================ Get the length of a string (number of characters): code: ============================================ Get the length of a string (number of characters) with a special character in it: code: ============================================
|
||||||||
| ================================================================================= | ||||||||
|
|
||||||||