我想知道一个数字是否在 PARI/GP 列表中,但我不知道该怎么做,这是我的代码:
mylist = listcreate();
... here I add some numbers with listput(mylist,XXXX)
/* How can I do the condition in the if... */
if(mynumber in mylist,print("SUCCESS"),print("ERROR"))
我正在从 Python 迁移到 PARI/GP 我的一些脚本,我迷失在那些基本的东西上,手册有点难以理解。谢谢!