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