About 2,970,000 results
Open links in new tab
  1. printing - Print variable and a string in python - Stack Overflow

    print("I have", card.price, "US Dollars") The print() function outputs strings to the screen. The comma lets you concatenate and print strings and variables together in a single line of code.

  2. why wont my printer print from my computer - HP Support …

    Mar 16, 2025 · Clear Print Queue – In Control Panel > Devices and Printers, right-click your printer, select See what's printing, and cancel any stuck jobs. Run HP Print and Scan Doctor – …

  3. python - What is print (f"...") - Stack Overflow

    Jul 22, 2019 · I am reading through a python script that takes an input of XML files and outputs an XML file. However, I do not understand the printing syntax. Can someone please explain what …

  4. python - How can I print multiple things (fixed text and/or variable ...

    See also: How can I print multiple things on the same line, one at a time? ; How do I put a variable’s value inside a string (interpolate it into the string)?

  5. What is the difference between print and print() in python 2.7

    Nov 30, 2015 · This in mainly a complement to other answers. You can see in Python 2 scripts print (var) when the normal usage would be print var. It uses the fact that (var) is just a …

  6. Cannot print using the HP Smart app - HP Support Community

    Feb 2, 2025 · Print from Cloud Services Try Printing from a Cloud Service: If you’re still having trouble with the HP Smart app, you can try printing via cloud services like Google Cloud Print …

  7. How do I lighten or darken the print - HP Support Community

    Aug 13, 2025 · To lighten or darken the print output on your HP LaserJet Pro MFP M148fdw, you can adjust the print density settings. Here's how to do it: Method 1: Using the Printer's Control …

  8. python - Pythonic way to print list items - Stack Overflow

    print(*myList, sep='\n') This is a kind of unpacking. Details in the Python tutorial: Unpacking Argument Lists You can get the same behavior on Python 2 using from __future__ import …

  9. python - How do I print to console in pytest? - Stack Overflow

    pytest will not print to the console when I use print. The documentation seems to say that it should work by default. I am using pytest my_tests.py to run this test: import myapplication as tum cl...

  10. Catch and print full Python exception traceback without …

    That's right, print_exception takes three positional arguments: The type of the exception, the actual exception object, and the exception's own internal traceback property.