diff --git a/src/02_datatypes.py b/src/02_datatypes.py index 245193da34..2616afed41 100644 --- a/src/02_datatypes.py +++ b/src/02_datatypes.py @@ -6,6 +6,8 @@ Note that if you try running the following code without making any changes, you'll get a TypeError saying you can't perform an operation on a string and an integer. + +In python every input is considered as a string, by default. So, one has nto specify that the datatype of input value. """ x = 5 @@ -18,4 +20,4 @@ # Write a print statement that combines x + y into the string value 57 -# YOUR CODE HERE \ No newline at end of file +# YOUR CODE HERE