
>>> text = '12345678'
>>> text.l
text.ljust( text.lower() text.lstrip(
>>> text.ljust(10,'0')
'1234567800'
>>> text.rjust(10,'0')
'0012345678'
>>> text.zfill(10)
'0012345678'
>>>
پسندها
(0)شاکی
(0)


>>> text = '12345678'
>>> text.l
text.ljust( text.lower() text.lstrip(
>>> text.ljust(10,'0')
'1234567800'
>>> text.rjust(10,'0')
'0012345678'
>>> text.zfill(10)
'0012345678'
>>>