commit message from python script
This commit is contained in:
18
Lehrer/pythonkurs/Mittwoch/import3
Executable file
18
Lehrer/pythonkurs/Mittwoch/import3
Executable file
@@ -0,0 +1,18 @@
|
||||
#! /usr/bin/env python3
|
||||
|
||||
# Nur Bezeichner pprint aus Modul pprint importieren
|
||||
from pprint import pprint as prettyprint
|
||||
import pprint
|
||||
|
||||
import sys as pysys
|
||||
|
||||
|
||||
def pprint(*args):
|
||||
print("Not yet implemented")
|
||||
|
||||
|
||||
data = dict(userlist=['nutzer01', 'nutzer02', 'nutzer03',
|
||||
'nutzer04', 'nutzer05', 'nutzer06'],
|
||||
location="Linuxhotel")
|
||||
|
||||
prettyprint(data)
|
||||
Reference in New Issue
Block a user