2018年1月10日 星期三

Python: Check if a string is numeric

Python: Check if a string is numeric

Python Basic: Exercise-95 with Solution

Write a Python program to check if a string is numeric.
Sample Solution:-
#str = 'a123'
#str = '123'
str=input("please input a string : ")
try:
    i = float(str)
except (ValueError, TypeError):
    print('\nNot numeric')
print()

================= RESTART: F:/Python_APSC/py-ex-basic-95.py =================
please input a string : a123

Not numeric

>>> 

沒有留言:

張貼留言

WOKWI ESP32-IDF DHT22 + MQTT 

 WOKWI ESP32-IDF DHT22 + MQTT WOKWI ESP32-IDF 程式 #include < stdio.h > #include < string.h > #include " freertos/FreeRTOS...