We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Strings
- What's Your Name?
- Discussions
What's Your Name?
What's Your Name?
Sort by
recency
|
1423 Discussions
|
Please Login in order to post a comment
def print_full_name(first, last):
if name == 'main':
def print_full_name(first, last): # Write your code here print("Hello",first_name,last_name+"!","You just delved into python.")
if name == 'main': first_name = input() last_name = input() print_full_name(first_name, last_name)
def print_full_name(first, last): print('Hello',first_name,last_name+'!','You just delved into python.')
if name == 'main': first_name = input() last_name = input() print_full_name(first_name, last_name)
print(f"Hello {first_name} {last_name}! You just delved into python.")