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 Community

    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 – Download …

  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 f in …

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

  5. 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 Panel On …

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

  7. 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 available) or …

  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 print_function. With …

  9. HP Print & Scan Doctor Discontinuation and Alternative Solutions

    Jun 13, 2025 · This article provides information about the discontinuation of the HP Print & Scan Doctor (PSDR) tool and guides you on how to continue accessing similar functionality through other HP …

  10. Catch and print full Python exception traceback without halting/exiting ...

    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.