fork download
  1. title = ['Name', 'Address', 'Description']
  2. input = [['Reddit', 'www.reddit.com', 'the frontpage of the internet'],['Wikipedia', 'en.wikipedia.net', 'The Free Encyclopedia'],['xkcd', 'xkcd.com', 'Sudo make me a sandwich.']]
  3.  
  4. def maxWidth(title, input, i):
  5. maxwidth = len(title)
  6. for j in input:
  7. maxwidth = max(maxwidth, len(j[i]))
  8. return (maxwidth + 2)
  9.  
  10. def borderString(title, input):
  11. string = ""
  12. for i in range(0, len(title)):
  13. width = maxWidth(title[i], input, i)
  14. string = string + "+" + ("-" * width)
  15. string = string + "+"
  16. return string
  17. def titleString(title, input):
  18. for i in range(0, len(title)):
  19. width = maxWidth(title[i], input, i)
  20. widthleft = (width - len(title[i]))//2
  21. widthright = (width - len(title[i]))//2 + (width - len(title[i])) % 2
  22. print("|"," " * widthleft, title[i], " " * widthright, sep="", end="")
  23. print("|")
  24. def itemString(title, input, i):
  25. for j in range(0, len(title)):
  26. width = maxWidth(title[j], input, j)
  27. widthright = width - len(input[i][j]) - 1
  28. print("| ", input[i][j], " " * widthright, sep = "", end="")
  29. print("|")
  30. def main():
  31. string = borderString(title,input)
  32. print(string)
  33. titleString(title, input)
  34. print(string)
  35. for i in range(0, len(input)):
  36. itemString(title, input, i)
  37. print(string)
  38.  
  39. main()
Success #stdin #stdout 0.02s 5760KB
stdin
Standard input is empty
stdout
+-----------+------------------+-------------------------------+
|   Name    |     Address      |          Description          |
+-----------+------------------+-------------------------------+
| Reddit    | www.reddit.com   | the frontpage of the internet |
| Wikipedia | en.wikipedia.net | The Free Encyclopedia         |
| xkcd      | xkcd.com         | Sudo make me a sandwich.      |
+-----------+------------------+-------------------------------+