Python

Table of Contents

index

Related: Bash - Shell - Unix

1 Python

1.0.1 Python logo

70d62de1-b649-4651-b810-51844ea09ac5.png

Figure 1: Python Logo.

python%20icon%20test.png

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("/"))       

Author: ghostunix

Created: 2017-10-28 Sat 13:24

Validate