diff options
Diffstat (limited to 'progs/a341.py')
-rw-r--r-- | progs/a341.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a341.py b/progs/a341.py new file mode 100644 index 0000000..ab12ee3 --- /dev/null +++ b/progs/a341.py @@ -0,0 +1,7 @@ +def check_element(test_tup, check_list):
+ res = False
+ for ele in check_list:
+ if ele in test_tup:
+ res = True
+ break
+ return (res)
\ No newline at end of file |