我正在做一个项目。目前我有一个相当大的条件语句,它根据一些输入参数为变量赋值。所以,我有这样的事情。
if some condition
x = some value
elsif another condition
x = a different value
...
重构它的最佳方法是什么?我希望我最终可能会得到类似的东西
x = some value if some condition || another value if another condition
这种事情有模式吗?