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.
  • HackerRank Home

    HackerRank

  • |
  • Prepare
  • Certify
  • Compete
  • Hiring developers?
  1. Prepare
  2. Python
  3. Strings
  4. What's Your Name?
  5. Discussions

What's Your Name?

Problem
Submissions
Leaderboard
Discussions
Editorial

Sort 1123 Discussions, By:

recency

Please Login in order to post a comment

  • Seal0220
    5 days ago+ 0 comments
    print(f'Hello {first} {last}! You just delved into python.')
    
    0|
    Permalink
  • varshinikonte04
    1 week ago+ 0 comments

    firstname =input (" ") lastname = input (" ") print(f' Hello {firstname} {lastname} ! You just delved into python')

    0|
    Permalink
  • raj_shekhar_2021
    1 week ago+ 0 comments
    def print_full_name(first, last):
        print("Hello {0} {1}! You just delved into python.".format(first,last))
    
    0|
    Permalink
  • Ashish4494
    2 weeks ago+ 0 comments

    print("Hello "+first+" "+last+"! You just delved into python.")

    1. Try these code
    -4|
    Permalink
  • vis_shubham2002
    2 weeks ago+ 0 comments
    def print_full_name(first, last):
        # Write your code here
        print(f"Hello {first} {last}! You just delved into python.")
        
        
    if __name__ == '__main__':
        first_name = input()
        last_name = input()
        print_full_name(first_name, last_name)
    
    0|
    Permalink
Load more conversations

Need Help?


View editorial
View top submissions
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy