作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 fixed_dictionaries
策略生成样本数据,其中两个键的值必须等长,例如:
{'ids': [1, 2, 3],
'words': ['foo', 'bar', 'baz']}
我如何强制执行此约束?我想我可以将一个定义为另一个的复合,但我不确定该怎么做。像这样的东西:
import hypothesis.strategies as st
ids = st.lists(elements=st.integers())
@st.composite
def words(draw, elements=st.text()):
draw(sample_ids) # ???
最佳答案
这里有一种方法可以解决这个问题:
@composite
def my_dicts(draw):
size = draw(st.integers(min_value=0))
ids = st.lists(min_size=size, max_size=size)
words = st.lists(min_size=size, max_size=size)
dicts = st.fixed_dictionaries({'ids': ids, 'words': words})
return draw(st.lists(dicts))
关于python - 使用假设在 fixed_dictionaries 中生成两个等长列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52447279/
我是一名优秀的程序员,十分优秀!