GirlThatLovesToCode

GirlThatLovesToCode

Follow
homeMy other writingsLearn DjangoFront-endFor beginnersAbout me
Tag

Python

#python

More content

Read more stories on Hashnode


Articles with this tag

Fluent in Django: Get to know Django models better

May 4, 202117 min read 8.1K views

Intro Django is an MTV framework. Instead of MVC (Model, Views, Controller), it uses Model, Template, and View. The View is a Python function that...

Fluent in Django: Get to know Django models better

Fluent in Django: 10+ Django template filters you should know

Apr 28, 202112 min read 4.8K views

Prerequisites You will need the basic knowledge of Django. If you don't feel comfortable with Django yet, try this beginner-friendly tutorial. Django...

Fluent in Django: 10+ Django template filters you should know

Fluent in Django: 8 Django template tags you should know

Apr 19, 202113 min read 8.0K views

Intro Django templating language (Django's default out-of-the-box templating language) comes with dozens of tags that make your template powerful and...

Fluent in Django: 8 Django template tags you should know

8 explained examples of list comprehension in Python

Apr 13, 20219 min read 2.0K views

What is list comprehension List comprehension is a concise way used instead of for-loop when you want to create a new list based on another iterable...

8 explained examples of list comprehension in Python

Fluent in Django: First steps

Mar 22, 202127 min read 3.9K views

Intro Knowing a language will only get you so far. If you have to build everything by yourself, you'll never get things done before the...

Fluent in Django: First steps

Dipping my toes in Test-Driven Development with Python

Mar 1, 20216 min read 584 views

Intro When you start learning you create an application, maybe even deploy it on some free server, but that's it. There is no unsatisfied customer...

Dipping my toes in Test-Driven Development with Python