gpt4 book ai didi

Python 返回另一个函数

转载 作者:行者123 更新时间:2023-12-03 00:57:33 24 4
gpt4 key购买 nike

我正在使用 PyOpenGL,我想制作小型 RGB 转换器功能。PyOpenGL 对于颜色使用从 0 到 1 的 float 。所以 0 0 0 - 黑色1 1 1 - 白色。我做这个:

def RGB(Red, Green, Blue):
Red = 1 / 255 * Red
Green = 1 / 255 * Green
Blue = 1 / 255 * Blue
return Red, Green, Blue

我这样使用他:

glClearColor(RGB(255, 255, 255), 1)

但我收到错误:

this function takes 4 arguments (2 given)

我不明白如何返回多个参数

最佳答案

你的函数RGB返回元组(1.0, 1.0, 1.0)你可以使用asterisk(*) operator解压它,就像这样 glClearColor(*RGB(255, 255, 255), 1)

关于Python 返回另一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59141094/

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