From 5fbe74cc92572b99902d265d8e17b24f0fefc999 Mon Sep 17 00:00:00 2001 From: Pon saravana pandian B Date: Sun, 19 Oct 2025 17:29:25 +0530 Subject: [PATCH] Update Datatypes-String Literals.md --- Datatypes-String Literals.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Datatypes-String Literals.md b/Datatypes-String Literals.md index 6217c3332..fc0fb71ea 100644 --- a/Datatypes-String Literals.md +++ b/Datatypes-String Literals.md @@ -9,7 +9,11 @@ To write a Python program to read a string from the user and then print it. 3. Print the value stored in the variable. ## 🧾 Program - +men_stepped_on_the_moon = input("Enter a string: ") +print(men_stepped_on_the_moon) ## Output +Enter a string: That's how man first stepped on the moon. +That's how man first stepped on the moon. ## Result +The code Executed successfully