summaryrefslogtreecommitdiff
path: root/progs/a119.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a119.py')
-rw-r--r--progs/a119.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a119.py b/progs/a119.py
new file mode 100644
index 0000000..5825608
--- /dev/null
+++ b/progs/a119.py
@@ -0,0 +1,5 @@
+def add_dict_to_tuple(test_tup, test_dict):
+ test_tup = list(test_tup)
+ test_tup.append(test_dict)
+ test_tup = tuple(test_tup)
+ return (test_tup) \ No newline at end of file