ในบทความนี้ เราจะมาเรียนรู้วิธีเข้าร่วมองค์ประกอบรายการ Unicode ทำตามขั้นตอนด้านล่างเพื่อเขียนโค้ด
- เริ่มต้นรายการ
- แปลงองค์ประกอบทั้งหมดเป็น Unicode โดยใช้วิธี map และ string.encode
- แปลงสตริงที่เข้ารหัสแต่ละสตริงโดยใช้วิธีการถอดรหัส
- รวมสตริงโดยใช้วิธีการเข้าร่วม
- พิมพ์ผลลัพธ์
ตัวอย่าง
# initializing the list strings = ['Tutorialspoint', 'is a popular', 'site', 'for tech leranings'] def get_unicode(string): return string.encode() # converting to unicode strings_unicode = map(get_unicode, strings) # joining the unicodes result = ' '.join(unicode.decode() for unicode in strings_unicode) # printing the result print(result)
หากคุณเรียกใช้โค้ดด้านบน คุณจะได้ผลลัพธ์ดังต่อไปนี้
ผลลัพธ์
Tutorialspoint is a popular site for tech leranings
บทสรุป
หากคุณมีคำถามใดๆ ในบทความ โปรดระบุในส่วนความคิดเห็น