Consider
a=2;s=0;while s<11: print(s*a);s+=1
I am getting
a=2;s=0;while s<11: print(s*a);s+=1
^
SyntaxError: invalid syntax
I want everything in a single line. Is it possible?
The reasoning for monstrosities like this is to try and beat a code golf