← 返回 meta 的题目列表Create New Name from Two Strings
类型:online_judge
Given two strings, create a new name from them. Write a function def create_new_name(first_name: str, second_name: str) -> str: where first_name and second_name are two input strings. Output is a string that represents a new name created by combining the two names.
Example:
Input: ('John', 'Doe')
Output: 'John Doe'
Input: ('Alice', 'Bob')
Output: 'Alice Bob'
Example
Input
'John' 'Doe'