I don't know if you guys are having the same problem, but when I'm trying to use """ and """ for multi-lines comments in eclipse pydev, it sometimes does not work. Anybody can suggest me some better IDE?
Sorry. I will try to make this clearer. It happens every time when I try to comment off looong multi lines like 300 or so. Just type whatever expression such as Bug = "This is a bug", and copy paste this single line to make the whole script 300 lines, now if you want to comment off these 300 lines, normally you would add """ before all these lines, and then add """ in the end. You will find that these lines do not get comment-off aka coloring problem.
"""
Bug = "This is a bug"
Bug = "This is a bug"
...
...
Bug = "This is a bug"
"""