สอนเขียน Python เขียนโค้ดคัดลอก หรือ copy ข้อมูลใน List ไปอีก List ด้วยคำสั่ง copy ตัวอย่างจะแสดงวิธีการคัดลอกข้อมูลทั้งใน List a ไปสู่ List b สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python คัดลอกข้อมูลใน List ด้วยคำสั่ง copy
a = ['apple', 'orange', 'berry']
b = a.copy()
print( 'a =',a )
print( 'b =',b )
ผลลัพธ์
a = ['apple', 'orange', 'berry']
b = ['apple', 'orange', 'berry']