Files
openide/python/testData/intentions/PyConvertFormatOperatorToMethodIntentionTest/multi_after.py
Valentina Kiryushkina fc00d0e0fc Fix PY-20800 'Replace with str.format method call' adds additional :s for repr
Remove explicit conversion :s because it is default for strings
2016-09-28 14:36:09 +03:00

14 lines
416 B
Python

n = 8
a = "{n:d} bottles of {what} on the {where}" \
"""
{n:d} bottles
of {what}
""" \
r'\n/ take {howmuch!r} down \n/' \
ur"pass it {how:>8}" \
"{new_n:#d} {{that is, {percent:+3.2f}% less}} " \
"bottles of {what:>6} on the {where}" \
.format(n=n, where="wall", howmuch=u'one', how="'round\t", new_n=(n - 1), percent=100 * (1 - ((n - 1.0) / n)),
what="beer")
print a