About 50 results
Open links in new tab
  1. python - Why is "None" printed after my function's output

    Then you asked Python to print the result of calling the function. So it called the function (printing one of the values), then printed the return value, which was None, as the text "None".

  2. How do I print colored text to the terminal? - Stack Overflow

    Apr 25, 2019 · I'll try and clarify a bit: Colorama aims to let Python programs print colored terminal text on all platforms, using the same ANSI codes as described in many other answers on this …

  3. How do I get time of a Python program's execution?

    Oct 13, 2009 · To measure a Python program's execution time, use the time module. Record the start time with time .time () before the code and the end time after. Subtract start from end to …

  4. Visual Studio Code is not showing the output of Python

    Mar 28, 2018 · Notes I recommend reviewing the official Visual Studio Code Python documentation and tutorial. That provides several of the basics, with running and debugging …

  5. How can I do a line break (line continuation) in Python (split up a ...

    321 From PEP 8 -- Style Guide for Python Code: The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. Long lines …

  6. Catch and print full Python exception traceback without …

    I want to catch and log exceptions without exiting, e.g., try: do_stuff () except Exception as err: print (Exception, err) # I want to print the entire traceback here, # not just the

  7. python - How to print without a newline or space - Stack Overflow

    3418 In Python 3, you can use the sep= and end= parameters of the print function: To not add a newline to the end of the string:

  8. How can I get the source code of a Python function?

    249 The inspect module has methods for retrieving source code from python objects. Seemingly it only works if the source is located in a file though. If you had that I guess you wouldn't need to …

  9. How do I read a response from Python Requests? - Stack Overflow

    I have two Python scripts. One uses the Urllib2 library and one uses the Requests library. I have found Requests easier to implement, but I can't find an equivalent for urlib2's read() function. For

  10. Print current call stack from a method in code

    Mar 11, 2022 · In Python, how can I print the current call stack from within a method (for debugging purposes).