นี่เป็นคำถามที่น่าสนุก! อีกวิธีหนึ่งในการจัดการสิ่งนี้สำหรับรายการความยาวตัวแปรคือการสร้างฟังก์ชันที่ใช้ประโยชน์จาก.format
วิธีการและการคลายรายการอย่างเต็มที่ ในตัวอย่างต่อไปนี้ฉันไม่ได้ใช้การจัดรูปแบบแฟนซี แต่สามารถเปลี่ยนแปลงได้ง่ายเพื่อให้เหมาะกับความต้องการของคุณ
list_1 = [1,2,3,4,5,6]
list_2 = [1,2,3,4,5,6,7,8]
# Create a function that can apply formatting to lists of any length:
def ListToFormattedString(alist):
# Create a format spec for each item in the input `alist`.
# E.g., each item will be right-adjusted, field width=3.
format_list = ['{:>3}' for item in alist]
# Now join the format specs into a single string:
# E.g., '{:>3}, {:>3}, {:>3}' if the input list has 3 items.
s = ','.join(format_list)
# Now unpack the input list `alist` into the format string. Done!
return s.format(*alist)
# Example output:
>>>ListToFormattedString(list_1)
' 1, 2, 3, 4, 5, 6'
>>>ListToFormattedString(list_2)
' 1, 2, 3, 4, 5, 6, 7, 8'
(x)
x
เป็นสิ่งเดียวกับ การใส่โทเค็นเดียวในวงเล็บไม่มีความหมายใน Python คุณมักจะใส่วงเล็บfoo = (bar, )
เพื่อให้อ่านง่ายขึ้น แต่foo = bar,
ก็เหมือนกันทุกประการ