python如何判断对象是否为字符串或者其他类型

2024-11-16 10:51:55
推荐回答(1个)
回答1:

isinstance(1,int)
True
isinstance('a',str)
True