We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf1fc8 commit df27872Copy full SHA for df27872
contribution_.py
@@ -0,0 +1,6 @@
1
+def greet(name):
2
+ return f"Hello, {name}!"
3
+
4
+if __name__ == "__main__":
5
+ name = input("Enter your name: ")
6
+ print(greet(name))
0 commit comments