gpt4 book ai didi

python - PyGears 元组和元组的区别

转载 作者:行者123 更新时间:2023-12-04 08:39:13 24 4
gpt4 key购买 nike

PyGears python框架中的元组和元组有什么区别?
pygears.org没有提及它。

最佳答案

tuple 是 Python 语法,而 Tuple 是 PyGears 语法。当您只想从您的设备发送一个接口(interface)时,您必须使用元组,而在许多接口(interface)中发送数据时,您使用元组。
代码示例:

@gear
async def python_gear() -> (Uint[8], Uint[8]):
yield (1, 2)

@gear
async def pygears_gear() -> Tuple[Uint[8], Uint[8]]:
yield Tuple[1, 1]


pythons_res = []
pygears_res = []
@gear
def consumer():
pythons = python_gear()
pygears = pygears_gear()
collect(ccat(*pythons), result=pythons_res)
collect(pygears, result=pygears_res)


consumer()
sim()
变速箱表示:
enter image description here

关于python - PyGears 元组和元组的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64646884/

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