Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
add space on variable
#3
>>> spam = 'foo'
>>> eggs = f'{spam: >10}' # eggs will have 10 chars
>>> eggs
'       foo'
>>> eggs = f'{spam: <10}'
>>> eggs
'foo       '
enigma619 likes this post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
add space on variable - by enigma619 - Jun-24-2021, 08:48 AM
RE: add space on variable - by menator01 - Jun-24-2021, 09:58 AM
RE: add space on variable - by buran - Jun-24-2021, 10:11 AM
RE: add space on variable - by enigma619 - Jun-24-2021, 02:30 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Removing Space between variable and string in Python coder_sw99 6 6,431 Aug-23-2022, 01:15 PM
Last Post: louries
  Remove a space between a string and variable in print sie 5 1,871 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  from global space to local space Skaperen 4 2,383 Sep-08-2020, 04:59 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

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