From db5abedd775084f0eccdb56b07003a0d0cd4c2b5 Mon Sep 17 00:00:00 2001 From: Sushant Kumar <151925978+sushantkumar143@users.noreply.github.com> Date: Thu, 5 Jun 2025 19:47:17 +0530 Subject: [PATCH] Update 02_datatypes.py Complete the questions given. --- src/02_datatypes.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/02_datatypes.py b/src/02_datatypes.py index 245193da34..52bd820ccd 100644 --- a/src/02_datatypes.py +++ b/src/02_datatypes.py @@ -14,8 +14,9 @@ # Write a print statement that combines x + y into the integer value 12 # YOUR CODE HERE - +print(x + int(y)) # 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 +print(str(s) + y)