-5

After a Windows update I am unable in any Python writing application to place a # in front of several lines Normally, it is shift + #

  • you can kind of emulate that by using docstrings and wrapping multiple lines of code around them – PMM Aug 25 '19 at 17:46
  • 2
    Looks like your keyboard layout is wrong. You have to correct that in Windows, this is not a Python question. – Matthias Aug 25 '19 at 17:51

1 Answers1

2

Install Visual studio Code in windows, it will allow you to comment multiple lines using ctrl + / in any python file.

Shan Ali
  • 564
  • 4
  • 12