在Python程序,我有蟒蛇如果列表超過20個字符縮短到20,如果是小於20個字符,加0,使其20
...
wf = raw_input("enter string \n")
wl = list(wf)
wd = wl[:-4]
#now I want to see if wl is over 20 characters
#if it is, I want it truncated to 20 characters
#if not, I want character appended until it is 20 characters
#if it is 20 characters leave it alone
...
請與具有東西評論幫助做什麼它說
[位於列表中數字前面0的可能重複,如果它們小於10(在python中)](http://stackoverflow.com/questions/7656754/place-a-0-in-front -of-numbers-in-a-list-if-they-is-less-in-python) – devnull
這個問題似乎是無關緊要的,因爲它是關於爲你製作代碼的。 –
@MaximeLorant我找不到一個特定的函數來調用,以便我可以追加0.我嘗試了一些不同的東西,但它們不起作用。我從來沒有聽說過str的zfill屬性,也沒有聽說過rjust/ljust。它沒有在我關於Python的書中提及它們。 – pokeswap