Skip to content

Commit 07346f1

Browse files
committed
What's your name?
1 parent fd6a5e4 commit 07346f1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

String/What's your name.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)