想請教各位高手
小弟初學Python遇到一個問題
我建立一個類別裡面定義數個方法
class test(object):
def methond1():
....
def methond2():
....
A = test(A)
B = test(B)
C = test(C)
我想讓使用者輸入一個變數K,用來選擇A、B、C輸出結果
K = input("輸入A、B、C")
我天真以為可以直接使用:
K.methond1()
來取代
A.methond1()
B.methond1()
C.mehtond1()
但失敗了,想請教是否有更好的解決辦法?