gpt4 book ai didi

python - 序列中的随机字符串

转载 作者:太空宇宙 更新时间:2023-11-04 06:45:30 26 4
gpt4 key购买 nike

有没有办法随机化一组字符串,就像整数一样?

我举个例子:

import random
random.randint(1, 30) #will produce random number between 1 and 30

对于一个字符串,我想从一组变量中随机化单词:

a="off","it","on","not"
random.randstr(a) #I understand that this isnt a real code and will produce and error

有没有简单的方法可以做到这一点?

最佳答案

试试这个,这是惯用的解决方案:

import random
a = ['off', 'it', 'on', 'not']
random.choice(a)
=> 'on' # just an example, it's a random output

上面的代码使用了choice()函数,看看documentation了解更多详情。

关于python - 序列中的随机字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18795879/

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