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

2024年11月16日 10:51
有1个网友回答
网友(1):

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