5 lines
97 B
Python
5 lines
97 B
Python
|
from __future__ import print_function
|
||
|
def printf(str, *args):
|
||
|
print(str % args, end='')
|
||
|
|