Alexandre B A Villares 🐍 · @villares
849 followers · 1323 posts · Server ciberlandia.pt


# gist.githubusercontent.com/alo

from random import sample

def setup():
global palavras
size(800, 800)
palavras = load_strings('stopwords.txt')
no_loop()
text_size(40)
fill(0)

def draw():
for i in range(5):
escolhas = sample(palavras, 5)
linha = ' '.join(escolhas)
text(linha, 100, 100 + i * 40)

def key_pressed():
redraw()

#portuguese #stopwords #processing #python #py5 #genuary #genuary28

Last updated 3 years ago

Ossifrage · @ossifrage
17 followers · 72 posts · Server mas.to

There was a serious point about and how can be abused in there. I wonder about protections against that.

#search #stopwords

Last updated 3 years ago