File: script6.py

package info (click to toggle)
distlib 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,252 kB
  • ctags: 3,019
  • sloc: python: 21,062; ansic: 407; 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')