حان وقت التعرف على نوع قوي جديد من القيم يسمى القوائم (Lists). إليك مثالًا:
__program_indented__
تهانينا! كان هذا التمرين صعبًا فعلًا. أحد الحلول الممكنة:
__no_auto_translate__ words = ['This', 'is', 'a', 'list'] separator = ' - ' total = '' not_first = False
for word in words: if not_first: total += separator total += word not_first = True
print(total)