Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
fixed width numbers
#3
How are you getting leading zeroes anyway?

For leading spaces you can use either append to your string or make use of more than one argument to your print function.

print( 1*' ' + str(number+1000000)[1:] )
Reply


Messages In This Thread
fixed width numbers - by Skaperen - May-26-2019, 01:13 AM
RE: fixed width numbers - by Larz60+ - May-26-2019, 03:18 AM
RE: fixed width numbers - by Nwb - May-26-2019, 05:41 AM
RE: fixed width numbers - by perfringo - May-26-2019, 08:02 AM
RE: fixed width numbers - by Skaperen - May-26-2019, 06:41 AM
RE: fixed width numbers - by Nwb - May-26-2019, 08:16 AM
RE: fixed width numbers - by Skaperen - May-26-2019, 01:48 PM
RE: fixed width numbers - by perfringo - May-26-2019, 11:30 AM
RE: fixed width numbers - by Nwb - May-26-2019, 03:01 PM
RE: fixed width numbers - by Skaperen - May-26-2019, 05:51 PM
RE: fixed width numbers - by Larz60+ - May-26-2019, 06:33 PM
RE: fixed width numbers - by Skaperen - May-27-2019, 12:46 AM
RE: fixed width numbers - by Larz60+ - May-27-2019, 01:23 AM
RE: fixed width numbers - by Skaperen - May-27-2019, 07:53 AM
RE: fixed width numbers - by perfringo - May-27-2019, 08:32 AM
RE: fixed width numbers - by Skaperen - May-27-2019, 09:42 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Python code to set column width 1418 11 1,585 Jan-20-2024, 07:20 AM
Last Post: Pedroski55
  How to do "fixed size" (wrapping) math in Python? AlexanderWulf 13 2,088 Jul-19-2023, 04:13 PM
Last Post: deanhystad
  Fixed colum width for rowLabels i Matplotlib pandabay 0 455 Jun-10-2023, 03:40 PM
Last Post: pandabay
  Encrypt and decrypt in python using own fixed key SriRajesh 3 5,148 Feb-20-2022, 01:18 PM
Last Post: dboxall123
  width of Unicode character Skaperen 6 2,831 Sep-27-2021, 12:41 AM
Last Post: Skaperen
  image.thumbnail(width, height) not working PCesarano 2 3,511 Apr-08-2021, 06:09 PM
Last Post: PCesarano
  Play fixed frequency sound in python 3 jpezz 2 2,854 Feb-07-2021, 08:21 PM
Last Post: jpezz
  Referencing a fixed cell Mark17 2 2,130 Dec-17-2020, 07:14 PM
Last Post: Mark17
  How can I get the width of a string in Python? aquerci 14 16,474 May-27-2019, 06:00 PM
Last Post: heiner55
  Print Numbers starting at 1 vertically with separator for output numbers Pleiades 3 3,822 May-09-2019, 12:19 PM
Last Post: Pleiades

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020