Help ! it's about ascii characters in the CodePlayground | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Help ! it's about ascii characters in the CodePlayground

I'm using python in the CodePlayground, and here is my question : When I try to print all usable characters, I'm tempted to write: for i in range(256): print(i, chr(i)) this results in getting : ---- all 128 first characters printed ---- and then : "UnicodeEncodeError: 'charmap' codec can't encode character" Ok, but then if I try : print(chr(230)) It gives me :"µ" printed nicely. print(chr(256)) is the limit. Do you understand what's happening here ? And also, if you know a way to use other encodings/charsets inside CodePlayground (I think there's no way) with python, don't forget to tell me : ) What's the situation with other languages about this limitation ?

25th Jan 2018, 7:34 PM
Cépagrave
Cépagrave - avatar
11 Answers
+ 8
You can run this to check which chr() work for i in range(257): try: print(i, chr(i)) except: pass
26th Jan 2018, 10:15 PM
David Ashton
David Ashton - avatar
+ 7
I think it's worth a shot - no harm in asking 🙂
26th Jan 2018, 10:27 PM
David Ashton
David Ashton - avatar
+ 5
ASCII is actually 7 bits so it's 128 characters. You are talking about extended ASCII or EASCII that have 8 bits. This could help https://stackoverflow.com/questions/6850486/how-do-i-specify-extended-ascii-i-e-range256-in-the-JUMP_LINK__&&__python__&&__JUMP_LINK-magic-encoding-s Edit: It’s 7bits and 8bits not bytes
25th Jan 2018, 8:30 PM
Toni Isotalo
Toni Isotalo - avatar
+ 4
Of course ! great ! Thank you David !
26th Jan 2018, 10:17 PM
Cépagrave
Cépagrave - avatar
+ 4
Do you think it's something we could ask SL team about ? It would be so nice if they could allow the use of the UTF-8 table ...
26th Jan 2018, 10:23 PM
Cépagrave
Cépagrave - avatar
+ 4
Ok, I'll write a mail, thank you again, David !
26th Jan 2018, 10:28 PM
Cépagrave
Cépagrave - avatar
+ 3
That gives us the answer : Ascii char usable in Codeplayground are : 0-127 160-255 everything from 128 to 159 is not decoded !
26th Jan 2018, 10:21 PM
Cépagrave
Cépagrave - avatar
+ 2
I've tried something to try to understand a little more : This code works sometimes : https://code.sololearn.com/clu3BZvWpOjE/#py This one always returns an encoding error: https://code.sololearn.com/c3Sl3a4IY9qz/#py Any idea ?
26th Jan 2018, 3:23 PM
Cépagrave
Cépagrave - avatar
+ 2
Well, it seems that only some characters won't work, that's why the range() function does not work ! I'll try to catch the bad guys when I have some time for hunting and I'll tell you.
26th Jan 2018, 3:57 PM
Cépagrave
Cépagrave - avatar
+ 1
@Toni Isotalo Thanks for answering and sharing this ! So now I understand there's a difference between 0-127 and 128-255 tables, ASCII and EASCII. But still, I don't understand why it sometimes work, sometimes not, with EASCII in the CodePlayground ?
26th Jan 2018, 3:26 PM
Cépagrave
Cépagrave - avatar
0
I think it works when you encode it to utf-8. Try this print(i, chr(i).encode('utf-8'))
26th Jan 2018, 3:38 PM
Toni Isotalo
Toni Isotalo - avatar