Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python แปลงอาร์เรย์เป็นรายการธรรมดาที่มีรายการเดียวกัน


อาร์เรย์จะได้รับ งานของเราคือการแปลงอาร์เรย์เป็นรายการธรรมดา เราแก้ปัญหานี้โดยใช้ฟังก์ชัน tolist() ฟังก์ชันนี้จะคืนค่าอาร์เรย์เป็นรายการ (อาจซ้อนกัน)

อัลกอริทึม

Step 1: Given an array.
Step 2: convert the array to a list using tolist() function.
Step 3: Display list

โค้ดตัวอย่าง

#Python program to convert an array to an ordinary
#list with the same items
from array import *
def arraytolist(A): 
   lst = A.tolist() # list
   print("The List Is ::>",lst) 
# Driver code 
A= array('i', [20,30,60]) # array 
arraytolist(A) 

ผลลัพธ์

The List Is ::> [20, 30, 60]
The List Is ::> [20, 30, 60]