Share
isinstance() tuple
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Predict the output:
a=()
b=isinstance(a, tuple)
print(b)
Answers ( 2 )
isinstance() returns True. Read more on this by visiting our tutorial page.
True