其他分享
首页 > 其他分享> > 201903-2 二十四点

201903-2 二十四点

作者:互联网

文章目录

201903-2 二十四点

1. 题目介绍

2. Python代码

# n 个游戏的解
n = int(input())
answer = []
for i in range(n):
    math = input()
    math = math.replace('x', '*')
    math = math.replace('/', '//')
    if eval(math) == 24:
        answer.append('Yes')
    else :
         answer.append('No')
for i in range (n):
    print(answer[i])

3.测试结果:

在这里插入图片描述

标签:二十四点,Python,replace,201903,answer,math
来源: https://blog.csdn.net/Ustinianljm/article/details/123142715