Comments in Python/Django

  • Single Line Comment:
            # Single Line Comment
  • Multi Line Comment:
            """
            This is for 
            multi Line Comment
            """
        

Comments

Popular posts from this blog

Messages Framework in Django

Forms in Django(bound, unbound, clean, is_valid, errors)

Advantages to using URLField() over TextField()