Word Counter Python

count_me = 'Please count how many words in this sentence, there are currently 13 words.'
word_count = len(count_me.split())
Elegant Emu