Skip to content
Snippets Groups Projects
qtc_select_surround.py 157 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env python3
    import sys
    
    # TODO, accept other characters as args
    
    txt = sys.stdin.read()
    print("(", end="")
    print(txt, end="")
    print(")", end="")