标签: python if-statement kivy
如何在kv文件中执行多行if语句?
if
Button: on_press: if x == 1: do_something do_something_else do_another_thing
这将是负担
if x == 1: do_something if x == 1: do_something_else if x == 1: do_another_thing