python syntax: how to send chracter to buffer?
i want to send a chracter(not in Hexadecimal Format) to buffer via Python script, what is correct syntax?
1. example for send character "B" to buffer 1000bytes: (This is using Hexadecimal format)
buffer = '\x42' * 1000
**So if i want to send a character "Thisisacomputer" to buffer but not in Hexadecimal format, what is the correct syntax?
Thank you. :-)
|