2 lines
97 B
Python
2 lines
97 B
Python
|
def prettyprint(ip, comment):
|
||
|
return ip.ljust(20) + ('# ' + comment if comment != '' else '')
|