DEV Community

Discussion on: Creating a follow and unfollow system in Django | python

Collapse
 
ericchapman profile image
Eric The Coder • Edited

Hi, good post. One tips. When you create your post with dev.to editor use the word python just after you begin a code section (just after the triple tick). example of the result:

# no python keyword
name = 'Mike'
Enter fullscreen mode Exit fullscreen mode
# with python keyword
name =  'Mike'
Enter fullscreen mode Exit fullscreen mode

By using the python keyword. Your code will be syntax colored and then easier to read.

Collapse
 
itsvinayak profile image
vinayak

Thanks for the advice