About 2,370,000 results
Open links in new tab
  1. 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 – …

  2. 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.

  3. 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)?

  4. 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 f …

  5. Unable to print. Rendering failed. - HP Support Community

    May 28, 2025 · A couple of months ago, I bought a new HP OfficeJet Pro 8124e printer. It was printing perfectly until today, when every single document I tried to print failed, saying, "Unable …

  6. 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 …

  7. What does end=' ' in a print call exactly do? - Stack Overflow

    Jul 16, 2023 · Check the reference page of print. By default there is a newline character appended to the item being printed (end='\n'), and end='' is used to make it printed on the same line.

  8. 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 …

  9. 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 (if …

  10. 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 …