From 6a6505f9809d984a13a31300f1d3b6b399fb1381 Mon Sep 17 00:00:00 2001 From: Shashibhushan Singh Date: Tue, 27 Oct 2020 21:55:50 +0530 Subject: [PATCH] instruction for user input---> clean code --- symdiff.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/symdiff.py b/symdiff.py index 0491d17..8de6e76 100644 --- a/symdiff.py +++ b/symdiff.py @@ -5,3 +5,18 @@ a=(set(m).intersection(set(o))).pop('') b=set(m).union(set(o)) print(b.discard(a)) + + +#input format + +#user input as integer +#user input +#calculate differnece between two input +""" +2 +123 1234 +2 +234 345 + print-->differnece b/w two input """ + +