I know that in regular lines it can do this
#print "Comment Line."   
and the whole line is a comment
But I want to comment a "define line" in Python.
For example  
# -*- coding: utf-8 -*- 
I thought it will "comment" the whole line, so the interpreter will ignore it, but it's not what happen. The interpreter refer to it as"regular define
In C if I remember it right it's simple, and it's something like this
//#define Hello Holly
But how can I do that in Python?
 
     
     
    