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
|
1388 Discussions
|
Please Login in order to post a comment
def print_full_name(first, last): k="Hello firstname lastname! You just delved into python." k=k.split(" ") for i in range(len(k)): if k[i]=="firstname": k[i]=first elif k[i]=="lastname!": k[i]=last+ "!" j=" ".join(k) print(j)
if name == 'main':
For Python3
if len(first) and len (last)<=10: print(f'Hello {first} {last}! You just delved into python.')
#
Complete the 'print_full_name' function below.
#
The function is expected to return a STRING.
The function accepts following parameters:
1. STRING first
2. STRING last
#
def print_full_name(first, last): greeting = f"Hello {first} {last}! You just delved into python." print(greeting)
if name == 'main': first_name = input() last_name = input() print_full_name(first_name, last_name)