gpt4 book ai didi

Python 将字符串解压到数组中

转载 作者:行者123 更新时间:2023-11-28 19:31:35 25 4
gpt4 key购买 nike

我每天都在使用 Ruby,但我在 Python 中遇到了问题。我发现这些语言非常相似......但是我在从 Ruby 迁移时遇到了一些问题 :)

请帮我在 python 中转换这个 Action :

   string = "qwerty2012"
(var, some_var, another_var) = string.unpack("a1a4a*")

这应该返回三个带有从字符串中解包的值的变量:

   var         = "q"      # a1
some_var = "wert" # a4
another_var = "y2012" # a*

帮我用Python表示它谢谢你!

最佳答案

s = "qwerty2012"
(a, b, c) = s[:1], s[1:5], s[5:]

关于Python 将字符串解压到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11092437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com