What's Your Name?

Sort by

recency

|

1437 Discussions

|

  • + 0 comments

    This challenge made my cat eat chocolate. i went through HELL and BACK just to do this JANK piece of GARBADGE. i hope the devs have a HORRIBLE day for making this challenge. i hope next time they buy bread its ALL END PIECES. i hope they get thier playdough colors MIXED UP. i hope both sides of their pillows are WARM so they CANT GET A GOOD NIGHTS SLEEP. may their woes be many, and their days few.

  • + 1 comment

    This challenge made me channel my inner gambler and do it completly improperly by making it 50/50 odds that the answer will be correct.** i want to consume nitromethane and explode.**

  • + 0 comments

    There is a typo in the challenge were one part of the instructions includes a period and one part does not.

    The main issue with this challenge it describes the function returning a string. That is NOT what this challenge is expecting. It simply expects a string to be printed to console from the function directly; that is, the function is not expected to return string. Garbage!

  • + 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 comments

    hi any feedback on this,whether it follows industry standard or not: def print_full_name(first, last):

    print(f"Hello {first} {last}! You just delved into python.")