Python
Table of Contents
Related: Bash - Shell - Unix
1 Python
1.0.1 Python logo
Figure 1: Python Logo.
Figure 2: python icon test
1.0.2 A Pytho source code
import sys import os def forEach(fn, seq): for e in seq: fn(e) forEach(print, os.listdir("/"))