I want to execute a python script X times with the same arguments in parallel, but I don't know how to accomplish this with GNU parallel.
Essentially what I'm trying to do is the equivalent of
parallel 'python3 script.py' ::: file1 file1 file1 ... file1
without having to manually type the filename X times