demo_ref_isinstance2.py:
x = isinstance("Hello", (str, float, int, str, list, dict, tuple)) print(x)
C:\Users\My Name>python demo_isinstance2.py
True