Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for First Word (simplified) by Vaishnav
def first_word(word):
x = word.split(" ")
return (x[0])
print(first_word("Hello World"))
print("Coding complete? Click 'Check' to earn cool rewards!")
Oct. 17, 2021
Comments: