Compare commits

...

1 Commits

Author SHA1 Message Date
fluffy f18ebe1f43 Add genre, tidy up words 2020-09-06 21:49:42 -07:00
2 changed files with 5 additions and 2 deletions

View File

@ -859,7 +859,6 @@ laik
lain lain
lair lair
laith laith
lame
lapse lapse
lard lard
lark lark

View File

@ -10,7 +10,11 @@ def randline(fname):
return line.strip() return line.strip()
def bot(): def bot():
beats = "lo-fi beats to {} and {} to".format( genre = randline('genres.txt')
if genre:
genre += ' '
beats = "lo-fi {}beats to {} and {} to".format(
genre,
randline('1syllableverbs.txt'), randline('2syllableverbs.txt')) randline('1syllableverbs.txt'), randline('2syllableverbs.txt'))
print(beats) print(beats)