summaryrefslogtreecommitdiff
path: root/doc/data/messages/s/self-cls-assignment/good.py
blob: ae8b172fa9379dac96737f5518a5f58039138ff5 (plain)
1
2
3
4
5
6
7
8
9
class Fruit:
    @classmethod
    def list_fruits(cls):
        fruit = 'apple'
        print(fruit)

    def print_color(self, *colors):
        color = colors[1]
        print(color)