Here is the hard way str = "\r\nthis is a string" # First convert every character in the string into its ASCII equivalent seq = map(ord, str) # Now convert ...
確定! 回上一頁