About 5,200,000 results
Open links in new tab
  1. printer on 'idle' how to fix - HP Support Community - 9440582

    Jul 18, 2025 · Print a Self-Test Page: Load plain white paper in the input tray. From the home screen on the printer control panel, swipe down to open the Dashboard, touch the Setup icon, …

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

  4. What is 'print' in Python? - Stack Overflow

    21 print is a mistake that has been rectified in Python 3. In Python 3 it is a function. In Python 1.x and 2.x it is not a function, it is a special form like if or while, but unlike those two it is not a …

  5. Re: HP Print & Scan Doctor Discontinuation and Alternative …

    As of May 27, 2025, HP has officially retired the HP Print and Scan Doctor due to a security vulnerability. If you've been trying to use it or download it, that's why it's no longer working or …

  6. Background color not showing in print preview - Stack Overflow

    I am trying to print a page. In that page I have given a table a background color. When I view the print preview in chrome its not taking on the background color property... So I tried this proper...

  7. HP Laser Jet 1020 and Windows 11 USB connection

    Jul 29, 2025 · I lost the driver for my work horse printer HP Laserjet 1020 and can't get anything to print using my Windows 11 operating system. I re-downloaded the driver from the HP website …

  8. How can I display a JavaScript object? - Stack Overflow

    How do I display the content of a JavaScript object in a string format like when we alert a variable? The same formatted way I want to display an object.

  9. Printer won't print when toner ink is low - HP Support Community

    Jul 24, 2025 · Hello. My printer stops printing when the toner ink is low even though the ink isn't faint. How can I change the print settings so that it continues to print even though the toner ink …

  10. Print series of prime numbers in python - Stack Overflow

    print p for i in range(p, n+1, p): sieve[i] = False An optimized version of the sieve handles 2 separately and sieves only odd numbers. Also, since all composites less than the square of …