About 8,180,000 results
Open links in new tab
  1. Why do I get "TypeError: ord() expected string of length 1, but int ...

    Why do I get "TypeError: ord () expected string of length 1, but int found" using `ord` on binary data in 3.x? Asked 11 years, 11 months ago Modified 2 years, 2 months ago Viewed 84k times

  2. What is the opposite of python's ord () function? - Stack Overflow

    Apr 23, 2015 · 75 I found out about Python's ord () function which returns corresponding Unicode codepoint value. But what is the opposite function, i.e. get char value by int? Edit: I'm new to …

  3. How to get the ASCII value of a character - Stack Overflow

    Oct 22, 2008 · 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, …

  4. What does the name of the ord () function stand for?

    May 13, 2018 · 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 …

  5. python - functionality of function ord () - Stack Overflow

    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 …

  6. Get the ascii value for a char, Ord equivalent in C++

    In delphi exist a function called Ord which Returns the ordinal value of an ordinal-type expression. for example you can retrieve the Ascii value for a char in this way Ord('A') return 65 Ord(...

  7. Caesar Cipher Function in Python - Stack Overflow

    Jan 17, 2012 · 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 …

  8. haskell - What is Ord type? - Stack Overflow

    Jul 23, 2015 · This means that Ord is a type-level thing, and we can ask it's kind with the :k command in GHCI: Prelude> :k Ord * -> Constraint Which makes sense; max had type Ord a …

  9. UTF-8 safe equivalent of javascript's charCodeAt () in PHP

    Jan 24, 2024 · 18 I need to be able to use ord() to get the same value as javascript's charCodeAt() function. The problem is that ord() doesn't support UTF8. How can I get Ą to …

  10. python - What's 0xFF for in cv2.waitKey (1)? - Stack Overflow

    Feb 12, 2016 · In this code, if cv2.waitKey(0) & 0xFF == ord('q'): break The waitKey(0) function returns -1 when no input is made whatsoever. As soon the event occurs i.e. a Button is …