Which Of The Following Formatting Options Can Be Used In Order #100
Which of the following formatting options can be used in order to add ‘n’ blank spaces after a given string ‘S’?
This multiple choice question (MCQ) is related to the book/course
gs gs109 Python.
It can also be found in
gs gs109 Formatting & Decorators in Python - Python Formatting - Quiz No.1.
Which of the following formatting options can be used in order to add ‘n’ blank spaces after a given string ‘S’?
print(“-ns”%S)
print(“-ns”%S)
print(“%ns”%S)
print(“%-ns”%S)