File: script6.py

package info (click to toggle)
distlib 0.3.6-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 2,192 kB
  • sloc: python: 12,614; ansic: 755; sh: 17; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#!python
import sys
import os
input = repr(sys.stdin.read())
print(os.path.basename(sys.argv[0]))
print(sys.argv[1:])
print(input)
if __debug__:
    print('non-optimized')