How To Make A Table On Python 3.5.2?
I Make A Code Like This, But I Have A Problem ... def arrayfunction(n): array = [None] *n return array def main(): title = input('Enter A Lesson Ti
Solution 1:
I recommend that you get comfortable with the str.format
function. It works wonders for this kind of thing.
print('{:^60}'.format('Point List'))
print('{:>30}{:<30}'.format('Lesson Title', title))
template = '{:<3}{:^12}{:^9}{:^9}{:^9}{:^9}{:^9}'
print(template.format('No.', 'Name', 'HW', 'Mid', 'Final','Total', 'Grade'))
for i in range(0, students):
print(template.format(i+1, name[i], home[i], mid[i], final[i], total[i], grade[i]))
Post a Comment for "How To Make A Table On Python 3.5.2?"