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.
2 parents 490e02c + 07346f1 commit ad0de85Copy full SHA for ad0de85
String/What's your name.py
@@ -0,0 +1,11 @@
1
+"""
2
+Input: First name and last name in different lines (seperated by \n).
3
4
+
5
+def print_full_name(first, last):
6
+ print("Hello",first,last, end="!")
7
+ print(" You just delved into python.")
8
9
+first_name = input()
10
+last_name = input()
11
+print_full_name(first_name, last_name)
0 commit comments