Computer Science, asked by sandeepperaka1625, 1 year ago

How to print a complete tuple in Python using string formatting?

Answers

Answered by shejal8
0

Python uses C-style string formatting to create new, formatted strings. The "%" operator is used to format a set of variables enclosed in a "tuple" (a fixed size list), together with a format string, which contains normal text together with "argument specifiers", special symbols like "%s" and "%d".

Similar questions