เวลาส่วนใหญ่จะง่ายกว่า (และถูกกว่า) เพื่อให้การทำซ้ำครั้งแรกเป็นกรณีพิเศษแทนที่จะเป็นครั้งสุดท้าย:
first = True
for data in data_list:
if first:
first = False
else:
between_items()
item()
นี้จะทำงาน iterable ใด ๆ แม้สำหรับผู้ที่ไม่มีlen()
:
file = open('/path/to/file')
for line in file:
process_line(line)
# No way of telling if this is the last line!
นอกจากนั้นฉันไม่คิดว่าจะมีวิธีแก้ปัญหาที่ดีกว่าโดยทั่วไปขึ้นอยู่กับสิ่งที่คุณพยายามทำ ตัวอย่างเช่นหากคุณกำลังสร้างสตริงจากรายการมันจะดีกว่าที่จะใช้ตามธรรมชาติstr.join()
มากกว่าการใช้for
ลูป "พร้อมตัวพิมพ์เล็ก"
ใช้หลักการเดียวกัน แต่กะทัดรัดกว่า:
for i, line in enumerate(data_list):
if i > 0:
between_items()
item()
ดูคุ้น ๆ ใช่มั้ย :)
สำหรับ @ofko และคนอื่น ๆ ที่ต้องการตรวจสอบว่ามูลค่าปัจจุบันของ iterable ที่ไม่มีโดยlen()
เป็นค่าสุดท้ายคุณจะต้องมองไปข้างหน้า:
def lookahead(iterable):
"""Pass through all values from the given iterable, augmented by the
information if there are more values to come after the current one
(True), or if it is the last value (False).
"""
# Get an iterator and pull the first value.
it = iter(iterable)
last = next(it)
# Run the iterator to exhaustion (starting from the second value).
for val in it:
# Report the *previous* value (more to come).
yield last, True
last = val
# Report the last value.
yield last, False
จากนั้นคุณสามารถใช้สิ่งนี้:
>>> for i, has_more in lookahead(range(3)):
... print(i, has_more)
0 True
1 True
2 False