From 9c2a05f2fa85d40a394afbbc854b063d8cc7a4aa Mon Sep 17 00:00:00 2001 From: Brian Tripp Date: Tue, 9 Jun 2026 16:42:05 -0500 Subject: [PATCH] fix(learnpython): correct malformed print statement in Input and Output solution --- tutorials/learnpython.org/en/Input and Output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/learnpython.org/en/Input and Output.md b/tutorials/learnpython.org/en/Input and Output.md index a1e937720..9bb64d816 100644 --- a/tutorials/learnpython.org/en/Input and Output.md +++ b/tutorials/learnpython.org/en/Input and Output.md @@ -90,4 +90,4 @@ Solution country = input("Enter your country: ") # Displaying the formatted sentence with name, age, and country - print("Hello, my name is {}, I am {} years old, and I am from {}.".format(name, age, country)) name is {}, I am {} years old, and I am from {}.".format(name, age, country)) + print("Hello, my name is {}, I am {} years old, and I am from {}.".format(name, age, country))