How python uses isinstance to receive a tuple
This article mainly introduces how python uses isinstance to receive a tuple, which has certain reference value. Interested friends can refer to it. I hope you will gain a lot after reading this article. Let Xiaobian take you to understand it together.
isinstance can receive a tuple
We can use isinstance(x, (float, int)) to determine whether x is a number, that is, the tuple is an OR relationship, as long as it is an instance of one of them returns True.
>>> isinstance(1, (float, int))True>> isinstance(1.3, (float, int))True>> isinstance("1.3", (float, int))False Thank you for reading this article carefully, I hope Xiaobian shared "Python how to use isinstance to receive a tuple" This article is helpful to everyone, but also hope that you support more, pay attention to industry information channels, more relevant knowledge waiting for you to learn!