I would like to create and print a string variable with a percentage sign at the beginning. I use Python 3.7.3, zeppelin and pyspark.
For example, I code:
%livy2.pyspark
a = '% some characters %'
print(a)
What I get:
some characters %
what I expect:
% some characters %
How can I do this correctly?