SyntaxError发生在将参数传递给使用了Partial Application的Python API方法时。

huangapple go评论64阅读模式
英文:

SyntaxError occurs when parameters are passed to a Python API’s method with Partial Application used

问题

当使用Python API时,我调用了一个方法run(script),其中使用了部分应用来固定share的部分参数。然而,报告了一个SyntaxError:

SyntaxError发生在将参数传递给使用了Partial Application的Python API方法时。

这是我的脚本。有人知道问题出在哪里吗?

s.run('tb=table(1000:0, `stock`date`price, [SYMBOL,DATE,DOUBLE])')
s.run("share{tb,}", `ad)
英文:

When using Python API, I called a method run(script) where Partial Application is used to fix part of parameters to share. However, a SyntaxError was reported:

SyntaxError发生在将参数传递给使用了Partial Application的Python API方法时。

Here is my script. Does anyone know where the problem is?

s.run('tb=table(1000:0, `stock`date`price, [SYMBOL,DATE,DOUBLE])')
s.run("share{tb,}", `ad)

答案1

得分: 1

错误的原因在于ad,因为这种格式只在DolphinDB中有效。在Python中,你应该使用'ad'或者"ad"

英文:

The cause of the error lies in ad, because this format is only valid in DolphinDB. In Python, you should use 'ad' or "ad".

huangapple
  • 本文由 发表于 2023年6月5日 10:06:33
  • 转载请务必保留本文链接:https://go.coder-hub.com/76403151.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定