这个random 的choice函数我是用错了吗
这个random.choices的用法是哪里错了么 ? import randomprint("choice() : ", random.choice())
print("choice('A String') : ", random.choice('A String')) import random
number = int(input("请输入抛硬币的次数: "))
answer = random.choices(['正面', '反面'],,k = number)
print("开始抛硬币实验: ", answer)
脑子一抽 我知道答案了{:5_92:} ba21 发表于 2022-3-30 21:33
import random
print("choice() : ", random.choice())
感谢大佬的帮助 {:5_111:}
页:
[1]