简体   繁体   中英

Does the ascii code contain all non-alphabetic characters?

I would need to generate all non-alphabetic characters, punctuation, spaces, weird characters etc. Are they all those that appear in the ascii code or are there others? In python I should simply do:

''.join(map(lambda i: chr(i), range(255)))

For an example of a non–ASCII non–alphabetic character, here it is the Ethiopic paragraph separator: ፨ — btw, there are three other different non–ascii non–alphabetic characters in this paragraph…

So no, the ASCII character set doesn't comprise every non–alphabetic character.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM