Skip to content

Commit 8206a80

Browse files
Answer to joining two lines
1 parent c42f25e commit 8206a80

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

join.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def print_full_name(a, b):
2+
print("Hello {} {}! You just delved into python.".format(first_name,last_name))
3+
4+
if __name__ == '__main__':
5+
first_name = input()
6+
last_name = input()
7+
print_full_name(first_name, last_name)

0 commit comments

Comments
 (0)