print globals slightly nicer
This commit is contained in:
11
alvra.py
11
alvra.py
@ -72,12 +72,15 @@ print(shut_und)
|
|||||||
print(pbps_und)
|
print(pbps_und)
|
||||||
|
|
||||||
|
|
||||||
for k, v in dict(globals()).items():
|
for k, v in sorted(dict(globals()).items()):
|
||||||
if k.startswith("__"):
|
if k.startswith("__"):
|
||||||
continue
|
continue
|
||||||
print("-" * 10)
|
print("=" * 50)
|
||||||
print(k)
|
print(k + ":")
|
||||||
|
print("-" * (len(k) + 1))
|
||||||
print(v)
|
print(v)
|
||||||
|
|
||||||
print(laser)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user