mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
10 lines
191 B
Python
10 lines
191 B
Python
import sys
|
|
|
|
def format(args):
|
|
print()
|
|
for line in sys.stdin.readlines():
|
|
print('"' + line.rstrip().replace('"', '\\"') + '"')
|
|
|
|
if __name__ == '__main__':
|
|
format(sys.argv)
|