Computer Science, asked by pranesh04, 8 months ago

write PYTHON in 7bit ASCII form​

Answers

Answered by CristianoNilando
0

Answer:

Please mark this as the brainliest answer and please follow me

To get the ASCII code of a character, use To get the ASCII code of a character, use the ord() function.

To get the character encoded by an ASCII code number, use the chr function. chr function.

Answered by somtoibegbu
1

Answer:

apply a bitmask of 0b1111111 or 127. that will zero out the 8th bit and keep the other 7

Explanation:

The original ASCII character code, which provides 128 different characters, numbered 0 to 127. ASCII and 7-bit ASCII are synonymous.

Similar questions