每天讲解一点PyTorch 【6】isinstance

每天讲解一点PyTorch 【6】isinstance,第1张

每天讲解一点PyTorch 【6】isinstance

今天我们讲解:

>>> x = 1
>>> if not isinstance (x, int or float or bool or complex or str or list or dict or set or tuple):
...   x = 0
... 
>>> 
if not isinstance (x,str):
    x= str(x)
if not isinstance(x, list):
    x= [x]
#这样的好处是代码更加健壮

isinstance函数功能:判断一个对象,如x是否是一个已知的类型,如str、list

isinstance (x,int)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5491118.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存