python:如何确定字符串是否包含元组?

发布于 2024-10-26 20:21:19 字数 236 浏览 1 评论 0原文

我需要一种干净的方法来确定字符串是否实际上是元组,如下所示:

'(123,456)' -->真正的

“你好世界”-->错误

我可以想到两种方法来做到这一点:

  1. 正则表达式
  2. 调用 eval 和捕获/忽略 SyntaxError

我不喜欢第二个选项。我对第一个选项很满意,但只是想知道是否有更好的方法。

谢谢。

I need a clean way to determine if a string is actually a tuple, like so:

'(123,456)' --> True

'hello world' --> False

I can think of two ways to do this:

  1. a regex
  2. call eval and catch/ignore a SyntaxError

I don't like the second option. I'm fine with the first option but just wanted to know if there was a better way to do it.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

魔法唧唧 2024-11-02 20:21:19
def represents_tuple(s):
    try: return type(ast.literal_eval(s)) == tuple
    except SyntaxError: return False
    except ValueError: return False
def represents_tuple(s):
    try: return type(ast.literal_eval(s)) == tuple
    except SyntaxError: return False
    except ValueError: return False
几味少女 2024-11-02 20:21:19

如果字符串内的元组只能有简单的数字,则使用正则表达式。如果元组成员可以任意复杂(例如嵌套列表),请使用 eval。

If the tuple inside the string can only have simple numbers, then use a regex. If the tuple members can be arbitrarily complex (such as nested lists), use eval.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文