C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
rileypetrov998
22.05.2026 11:58
0
Markdown parser
Open to PRs
test.py
def count_words(text): return len(text.split()) print(count_words("hello world foo"))
test.py
def max_in_list(lst): m = lst[0] for x in lst: if x > m: m = x return m print(max_in_list([3, 7, 1, 9, 4]))
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel