11
votes
1answer
245 views

Python's “//” operator treated as a comment

s = 5 // 2 if s == 2: print(s) As you can see the highlighting system treats Python's floor division operator // as the beginning of a comment. But // is not a comment in Python. Is there any ...