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 771ba98 commit 43d015eCopy full SHA for 43d015e
Strings/What's Your Name/Solution.py
@@ -0,0 +1,8 @@
1
+def print_full_name(first_name, last_name):
2
+ print("Hello " + first_name + " " + last_name + "! You just delved into python.")
3
+
4
5
+if __name__ == '__main__':
6
+ first_name = input()
7
+ last_name = input()
8
+ print_full_name(first_name, last_name)
0 commit comments