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