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
|
1434 Discussions
|
Please Login in order to post a comment
This is a fun and beginner-friendly problem that helps build confidence with Python strings. Betting exchange id login
Comment says the string needs to be returned when the grader expects it to be printed.
def print_full_name(first, last): print("Hello",first+" "+last+"! You just delved into python.")
def print_full_name(first, last): # Write your code here print(f"Hello {first} {last}! You just delved into python.")
print(f"Hello {first} {last}! You just delved into python.")