位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——在Python中实现一个真正的switch-case语句

提问人:ylm发布时间:2020-09-29

下面的代码使用一个字典来模拟构造一个switch-case。

In [104]: def xswitch(x):

     ...:     return xswitch._system_dict.get(x, None)

     ...:

 

In [105]: xswitch._system_dict = {'files': 10, 'folders': 5, 'devices': 2}

 

In [106]: print(xswitch('default'))None

 

In [107]: print(xswitch('devices'))2

 

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部