溫馨提示×

python中如何用if判斷字符串類型

小億
194
2024-04-20 16:57:39
欄目: 編程語言

在Python中,可以使用isinstance()函數(shù)來判斷一個變量的類型是否為字符串。例如:

value = "hello"
if isinstance(value, str):
    print("value is a string")
else:
    print("value is not a string")

另外,也可以直接使用type()函數(shù)來判斷一個變量的類型是否為字符串。例如:

value = "hello"
if type(value) == str:
    print("value is a string")
else:
    print("value is not a string")

0