I'm in an intro to programming class and part of an program I need to make(using python) requires that a list be made in two columns. It'll be a list of two sets of numbers that will vary depending upon user input.
for i in range(totallow, totalhigh+1, 1):
print i
for i in range(T2, T1+1, 1):
print i
A general idea of what it is if they are stacked on top of each other, it's part of a bigger program, I need to find how to get each range to print in it's own column.
Any help would be awesome!
for i in range(totallow, totalhigh+1, 1):
print i
for i in range(T2, T1+1, 1):
print i
A general idea of what it is if they are stacked on top of each other, it's part of a bigger program, I need to find how to get each range to print in it's own column.
Any help would be awesome!