Posts: 4,646
Threads: 1,493
Joined: Sep 2016
is there an easy way to output numbers in a simple print() call in a fixed width? for cases with leading zeros i have been doing:
print(str(number+1000000)[1:])
but now i want to have leading spaces. do i need to write a function to do this?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
i am getting leading zeroes by adding a big enough power of 10 and slicing off the leading '1'. i suppose this might work:
print((width*' '+str(number))[-width:])
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
(May-26-2019, 08:16 AM)Nwb Wrote: Ah okay so you want to add leading zeroes.
You can use string formatting to do this very easily.
print(f'{number:0(length)}')
eg:
>>> print(f'{10:020}')
00000000000000000010
read my first post. i have been doing leading zeroes. now i want to do leading spaces.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
i have a couple ways to do it, now.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.