About 684,000 results
Open links in new tab
  1. What is Python's equivalent of && (logical-and) in an if-statement?

    Mar 21, 2010 · There is no bitwise negation in Python (just the bitwise inverse operator ~ - but that is not equivalent to not). See also 6.6. Unary arithmetic and bitwise/binary operations and …

  2. What does colon equal (:=) in Python mean? - Stack Overflow

    Mar 21, 2023 · In Python this is simply =. To translate this pseudocode into Python you would need to know the data structures being referenced, and a bit more of the algorithm …

  3. python - Is there a difference between "==" and "is"? - Stack …

    According to the previous answers: It seems python performs caching on small integer and strings which means that it utilizes the same object reference for 'hello' string occurrences in this code …

  4. python - Iterating over dictionaries using 'for' loops - Stack Overflow

    Jul 21, 2010 · Why is it 'better' to use my_dict.keys() over iterating directly over the dictionary? Iteration over a dictionary is clearly documented as yielding keys. It appears you had Python 2 …

  5. What does the percentage sign mean in Python [duplicate]

    Apr 25, 2017 · 1 In python 2.6 the '%' operator performed a modulus. I don't think they changed it in 3.0.1 The modulo operator tells you the remainder of a division of two numbers.

  6. python - What exactly do "u" and "r" string prefixes do, and what …

    This question is similar to: What's the difference between r'string' and normal 'string' in Python? and What's the u prefix in a Python string? Close voters, please vote to close as a duplicate of …

  7. math - `/` vs `//` for division in Python - Stack Overflow

    Aug 23, 2024 · In Python 3.x, 5 / 2 will return 2.5 and 5 // 2 will return 2. The former is floating point division, and the latter is floor division, sometimes also called integer division. In Python …

  8. python - How should I use the Optional type hint? - Stack Overflow

    Python 3.10 introduces the | union operator into type hinting, see PEP 604. Instead of Union[str, int] you can write str | int. In line with other type-hinted languages, the preferred (and more …

  9. syntax - What do >> and << mean in Python? - Stack Overflow

    Apr 3, 2014 · 15 The other case involving print >>obj, "Hello World" is the "print chevron" syntax for the print statement in Python 2 (removed in Python 3, replaced by the file argument of the …

  10. syntax - Python integer incrementing with ++ - Stack Overflow

    In Python, you deal with data in an abstract way and seldom increment through indices and such. The closest-in-spirit thing to ++ is the next method of iterators.