diff --git a/Excption Handling/Problem 6/C.py b/Excption Handling/Problem 6/C.py new file mode 100644 index 0000000000000000000000000000000000000000..de491a0b985f378d94e94730aae0eadf21422f04 --- /dev/null +++ b/Excption Handling/Problem 6/C.py @@ -0,0 +1,6 @@ +example = {'python': 'simple', 'c': 'fast'} +try: + print(example['java']) +except ValueError as e: + print(example) + raise RuntimeError \ No newline at end of file