0

異なる属性を持つ 3 つの関数を持つクラスがあります。

 class Weather:
        def __init__(year,month,day):
            #do something with year, month and day
        def crops(beans,wheat):
            #do something with beans and wheat
        def vegetables(tomato,garlic)
            #do something with tomato, garlic and beans

beansとの両方cropsで使用する必要がvegatablesありますが、beans は の属性ですcrops。これは可能ですか、それとも複数の関数で使用できるようにするためにbeans内部に含める必要がありますか?__init__

4

2 に答える 2