Files
Python-Schulung/Lehrer/pythonkurs/Mittwoch/import2

12 lines
283 B
Python
Executable File

#! /usr/bin/env python3
# Gesamtes Modul pprint als Bezeichner pprint zur Verfuegung stellen
import pprint
data = dict(userlist=['nutzer01', 'nutzer02', 'nutzer03',
'nutzer04', 'nutzer05', 'nutzer06'],
location="Linuxhotel")
pprint.pprint(data)