Python
def func(*ch):
if 2 in ch:
return True
else:
return False
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Python
def func(*ch):
if 2 in ch:
return True
else:
return False