ฉันพบวิธีที่ดีในการใช้ฟังก์ชันและโค้ดพื้นฐาน นี่คือรหัสที่ยอมรับสตริงและนับจำนวนตัวพิมพ์ใหญ่ตัวพิมพ์เล็กและ 'อื่น ๆ ' อื่น ๆ จัดเป็นช่องว่างเครื่องหมายวรรคตอนหรือแม้แต่ตัวอักษรญี่ปุ่นและจีน
def check(count):
lowercase = 0
uppercase = 0
other = 0
low = 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'
upper = 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'
for n in count:
if n in low:
lowercase += 1
elif n in upper:
uppercase += 1
else:
other += 1
print("There are " + str(lowercase) + " lowercase letters.")
print("There are " + str(uppercase) + " uppercase letters.")
print("There are " + str(other) + " other elements to this sentence.")
character.isalnum() or character == "_"
ถ้าคุณจำเป็นต้องดูว่าตัวละครที่เป็นตัวอักษรคำว่าวิธีที่ดีที่สุดที่ฉันได้พบเป็น