C
de
S
pace
Explore
Log In
Explore
Sign Up
Log In
rowannakamura361
22.05.2026 12:21
0
Name generator
Rewrote old code
models.py
from collections import Counter def top_words(text, n=5): words = text.lower().split() return Counter(words).most_common(n) print(top_words('the cat sat on the mat the cat'))
handler.py
def hello(): print("Hello, World!")
Idle
Try It
Clear
Log in
to leave a comment
Are you sure you want to delete this post?
Delete
Cancel