在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")