0

下面是javascript中的代码。我需要将其转换为 Python。具有一个返回值的多个 switch 案例。:

textOfBetType: function(tip) {
    switch (tip) {
    case "tip1":
    case "tip0":
    case "tip2":
        return "Livewette 0:0"
        //return "Sieger (3-Weg)"
    case "tipOver":
    case "tipUnder":
        return "Über/Unter 2,5";
      }

    return null;
}

我在 Python 中使用了“if and else”语句。

def text_of_bet_type(self, tip):
        if tip == "tip1" or tip == "tip0" or tip == "tip2":
            return "Livewette 0:0"
        else:
            return 'null';

但是有没有其他方法可以做到这一点..

4

0 回答 0