Python3 beginner doubts.
I was going through a wonderful document https://pymotw.com/3/argparse/index.html#module-argparse
results = parser.parse_args()
print('simple_value = {!r}'.format(results.simple_value))
print('constant_value = {!r}'.format(results.constant_value))
first time, noticing this {!r}'
. I don't know what to call this or search for in google.
Could someone break this for an easy understanding?