summaryrefslogtreecommitdiff
path: root/doc/data/messages/s/self-cls-assignment/good.py
blob: d1960f2516c006b146eb17e53077d8486c97e926 (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)