diff --git a/08.Decorators/decorators-6.py b/08.Decorators/decorators-6.py index 150ca31..7de58e6 100644 --- a/08.Decorators/decorators-6.py +++ b/08.Decorators/decorators-6.py @@ -14,7 +14,7 @@ def decorated(string_args): @decorator def alsoDecorated(num1, num2): - print("Sum of " + str(num1) + "and" + str(num2) + ": " + str(num1 + num2)) + print("Sum of " + str(num1) + " and " + str(num2) + ": " + str(num1 + num2)) if __name__ == "__main__": @@ -26,5 +26,5 @@ def alsoDecorated(num1, num2): This function takes 1 arguments This happened: Hello This function takes 2 arguments -Sum of 1and2: 3 -''' \ No newline at end of file +Sum of 1 and 2: 3 +'''