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

ประเภทข้อมูลสตริงใน Python


สตริงใน Python ถูกระบุว่าเป็นชุดอักขระต่อเนื่องกันที่แสดงในเครื่องหมายคำพูด Python อนุญาตให้ใช้เครื่องหมายคำพูดเดี่ยวหรือคู่ สามารถใช้ชุดย่อยของสตริงได้โดยใช้ตัวดำเนินการสไลซ์ ([ ] และ [:] ) โดยมีดัชนีเริ่มต้นที่ 0 ที่จุดเริ่มต้นของสตริงและเริ่มจาก -1 ในตอนท้าย

ตัวอย่าง

เครื่องหมายบวก (+) คือตัวดำเนินการการต่อสตริงและเครื่องหมายดอกจัน (*) เป็นตัวดำเนินการการทำซ้ำ ตัวอย่างเช่น −

#!/usr/bin/python
str = 'Hello World!'
print str # Prints complete string
print str[0] # Prints first character of the string
print str[2:5] # Prints characters starting from 3rd to 5th
print str[2:] # Prints string starting from 3rd character
print str * 2 # Prints string two times
print str + "TEST" # Prints concatenated string

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ดังต่อไปนี้ -

Hello World!
H
llo
llo World!
Hello World!Hello World!
Hello World!TEST