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

Python - วิธีจัดรูปแบบองค์ประกอบของรายการที่กำหนด


รายการคือชุดสะสมที่สั่งซื้อและเปลี่ยนแปลงได้ ในรายการ Python เขียนด้วยวงเล็บเหลี่ยม คุณเข้าถึงรายการโดยอ้างถึงหมายเลขดัชนี การจัดทำดัชนีเชิงลบหมายถึงการเริ่มต้นจากจุดสิ้นสุด -1 หมายถึงรายการสุดท้าย คุณสามารถระบุช่วงของดัชนีโดยระบุตำแหน่งที่จะเริ่มต้นและตำแหน่งที่จะสิ้นสุดช่วง เมื่อระบุช่วง ค่าที่ส่งคืนจะเป็นรายการใหม่พร้อมรายการที่ระบุ

ตัวอย่าง

# List initialization
Input = [100.7689454, 17.232999, 60.98867, 300.83748789]
# Using list comprehension
Output = ["%.2f" % elem for elem in Input]  
# Printing output
print(Output)
# List initialization
Input = [100.7689454, 17.232999, 60.98867, 300.83748789]
# Using map
Output = map(lambda n: "%.2f" % n, Input)  
# Converting to list
Output = list(Output)  
# Print output
print(Output)
# List initialization
Input = [100.7689454, 17.232999, 60.98867, 300.83748789]
# Using forrmat
Output = ['{:.2f}'.format(elem) for elem in Input]
# Print output
print(Output)
# List initialization
Input = [100.7689454, 17.232999, 60.98867, 300.83748789]  
# Using forrmat
Output = ['{:.2f}'.format(elem) for elem in Input]  
# Print output
print(Output)

ผลลัพธ์

['100.77', '17.23', '60.99', '300.84']
['100.77', '17.23', '60.99', '300.84']
['100.77', '17.23', '60.99', '300.84']
['100.77', '17.23', '60.99', '300.84']