Skip to content

Latest commit

 

History

History
40 lines (20 loc) · 625 Bytes

Function_1_hello_world.md

File metadata and controls

40 lines (20 loc) · 625 Bytes

CodeWars Python Solutions


Remove String Spaces

Description:

Make a simple function called greet that returns the most-famous "hello world!".

Style Points

Sure, this is about as easy as it gets. But how clever can you be to create the most creative hello world you can think of? What is a "hello world" solution you would want to show your friends?


Given Code

# Write a function `greet` that returns "hello world!"

Solution

def greet():
    return "hello world!"

See on CodeWars.com