Python HackerRank 문제 14 - What's Your Name?


Python HackerRank 문제 14 - What's Your Name?

Python HackerRank 문제 14 - What's Your Name? What's Your Name? 풀이 def print_full_name(first, last): print("Hello {} {}! You just delved into python.".format(first,last)) if __name__ == '__main__': first_name = input() last_name = input() print_full_name(first_name, last_name) * 출처 What's Your Name? | HackerRank Python string practice: Print your name in the console. www.hackerrank.com...

Python HackerRank 문제 14 - What's Your Name?에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.


#HackerRank_WhatsYourName #Python #Python_HackerRank #Python_HackerRank_WhatsYourName #Python_WhatsYourName

원문링크 : Python HackerRank 문제 14 - What's Your Name?