1. 程式人生 > >Python center()方法和列舉

Python center()方法和列舉

Python center() 返回一個原字串居中,並使用空格填充至長度 width 的新字串。預設填充字元為空格。
center()方法語法:

str.center(width[, fillchar])

width -- 字串的總寬度。
fillchar -- 填充字元。

例子:
列印一個大小為n的菱形
n = int(input(‘Num:’))
for i in range(1,n):
print((’i).center(3n))
for i in range(n,0,-1):
print((’
i).center(3n))
在這裡插入圖片描述
2.列舉
for i,v in enumerate(‘hello’)
>>>print(str(i)+’---->’+v)

0------->h
1------->e
2------->l
3------->l
4------->o