import random
words =[1, 2, 3, 4]
class Titles:
def __init__(self, random_word):
self.random_word = random_word
def word_shuffle(self):
self.random_word = random.choice(words)
return 'Kategoria: ' + random_word
title = Titles
title.word_shuffle()
"TypeError: word_shuffle() missing 1 required positional argument: 'self'"
Głowię się z tym i nie mogę zrozumieć dlaczego to nie działa. Ktoś mi podpowie co robie źle?