<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Ord Python</title><link>http://www.bing.com:80/search?q=Ord+Python</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Ord Python</title><link>http://www.bing.com:80/search?q=Ord+Python</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>How to get the ASCII value of a character - Stack Overflow</title><link>https://stackoverflow.com/questions/227459/how-to-get-the-ascii-value-of-a-character</link><description>Depending on the number of characters, it could be orders of magnitude faster than calling ord in a loop. To use it, wrap a string/character in a numpy array and view it as int, which returns the corresponding numeric value (s) of the character (s) in whatever encoding it is in.</description><pubDate>Sun, 19 Apr 2026 06:59:00 GMT</pubDate></item><item><title>python - How do chr () and ord () relate to str and bytes? - Stack Overflow</title><link>https://stackoverflow.com/questions/50011314/how-do-chr-and-ord-relate-to-str-and-bytes</link><description>ord() takes as input a single-character str and returns an int. The input is a str just like any other str in Python 3. In particular, it is not bytes encoded in some specific Unicode format like UTF-8, rather it represents Unicode Code Points in Python's internal str format. chr() takes as input an int, and returns a single character str.</description><pubDate>Sun, 19 Apr 2026 17:21:00 GMT</pubDate></item><item><title>python - What does ord (c) and chr (n) do and what does this code ...</title><link>https://stackoverflow.com/questions/57501478/what-does-ordc-and-chrn-do-and-what-does-this-code-output-and-why-i-do-not</link><description>Look up what ord (gets a asciis integer value) and chr (turns integer values back into charcters) do. As it sits the code is just grabbing the next ascii character (a becomes b). Btw in the future you should read the official documentation before asking a question you could have easily answered yourself.</description><pubDate>Thu, 16 Apr 2026 21:50:00 GMT</pubDate></item><item><title>python - What does the name of the ord () function stand for? - Stack ...</title><link>https://stackoverflow.com/questions/50314440/what-does-the-name-of-the-ord-function-stand-for</link><description>The official Python documentation explains ord(c) ord (c): Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord ('a') returns the integer 97 and ord ('€') (Euro sign) returns 8364. This is the inverse of chr (). It does not specify the meaning of ord, google searches are not helpful. What's the origin of it?</description><pubDate>Thu, 16 Apr 2026 00:07:00 GMT</pubDate></item><item><title>python - using ord function (ord (B [0]) - ord ('0')) - Stack Overflow</title><link>https://stackoverflow.com/questions/21804437/using-ord-function-ordb0-ord0</link><description>So ord(B[0]) - ord('0') is the int 1 when B[0] is the string '1', and it is the int 0 when B[0] is the string '0'. In short, it is just a way to convert the string to an int. int(B[0]) would have been simpler, but the author is avoiding int, since if you have int then the entire piece of code could be replaced by int(B, 2).</description><pubDate>Fri, 17 Apr 2026 21:34:00 GMT</pubDate></item><item><title>python - functionality of function ord () - Stack Overflow</title><link>https://stackoverflow.com/questions/61547708/functionality-of-function-ord</link><description>2 ord is a function that takes a character and returns the number that unicode associates that character with. The way unicode structures the digits 0-9 ord("9")-ord("0") will result in 9. ord of 0 is 48 and the digits count up from there: "1" is 49, "2" is 50 etc.</description><pubDate>Mon, 13 Apr 2026 21:03:00 GMT</pubDate></item><item><title>Caesar Cipher Function in Python - Stack Overflow</title><link>https://stackoverflow.com/questions/8886947/caesar-cipher-function-in-python</link><description>I'm trying to create a simple Caesar Cipher function in Python that shifts letters based on input from the user and creates a final, new string at the end. The only problem is that the final cipher...</description><pubDate>Sun, 19 Apr 2026 00:10:00 GMT</pubDate></item><item><title>python - Usage of ord ('q') and 0xFF - Stack Overflow</title><link>https://stackoverflow.com/questions/53357877/usage-of-ordq-and-0xff</link><description>ord('q') returns the Unicode code point of q cv2.waitkey(1) returns a 32-bit integer corresponding to the pressed key &amp; 0xFF is a bit mask which sets the left 24 bits to zero, because ord() returns a value betwen 0 and 255, since your keyboard only has a limited character set Therefore, once the mask is applied, it is then possible to check if it is the corresponding key.</description><pubDate>Thu, 16 Apr 2026 12:17:00 GMT</pubDate></item><item><title>python - How to convert string to binary? - Stack Overflow</title><link>https://stackoverflow.com/questions/18815820/how-to-convert-string-to-binary</link><description>I am in need of a way to get the binary representation of a string in python. e.g. st = "hello world" toBinary(st) Is there a module of some neat way of doing this?</description><pubDate>Fri, 17 Apr 2026 19:25:00 GMT</pubDate></item><item><title>string - Alphabet range in Python - Stack Overflow</title><link>https://stackoverflow.com/questions/16060899/alphabet-range-in-python</link><description>In Python 3, use string.ascii_lowercase. But this returns a string. In case you need a list, I think, Bg1850 is a neat solution</description><pubDate>Sat, 18 Apr 2026 17:22:00 GMT</pubDate></item></channel></rss>