-
PROGRAMS
Problem DefinitionMake a Python program to check if the given string is palindrome or not. A string is a palindrome if it reads same from forward as well as backward for example madam.SolutionTake the input string from the user and store it in a variable…
-
PROGRAMS
Problem DefinitionMake a Python program to check wheater the given number is Even or Odd.SolutionIf a number is exactly divisible by 2 then it is an even number else it is an odd number. In this article, we will use this particular logic to create a Pyth…
-
PROGRAMS
Problem DefinitionMake a Python function for generating a Fibonacci sequence. The Fibonacci sequence is a series where the next term is the sum of the previous two terms. The first two terms of the Fibonacci sequence is 0 followed by 1.Example Fibonacci …
-
TOOLS
Visual Studio the text editor is known as Visual Studio Code is Microsoft’s free text editor that runs on Windows, Linux, and macOS. It’s a recent entrant to the market; Microsoft released the product as a public preview at the end of 2015, posting the o…
-
DJANGO
In this tutorial, we’ll build a Blog application with Django that allows users to create, edit, and delete posts. The homepage will list all blog posts, and there will be a dedicated detail page for each individual post. Django is capable of making more …
-
DJANGO
Django is among the most recommended full stack web development frameworks at the moment. Django follows Model-Template-View (MTV) architecture. This is something similar to the traditional MVC( Model-View_Controller) architecture, but in Django, views a…
-
DJANGO
Django is a high-level full stack open source web framework written in Python, that encourages rapid development and clean, pragmatic design. Django comes with lots of advance functionalities baked in which saves developers a lot of time. The simplicity …
-
DJANGO
Django is one of the most popular open source full-stack web development Framework written in Python. Django is a framework for perfectionists with deadlines, it takes care of much of the hassle of Web development, so you can focus on writing your app wi…
-
TOOLS
Django is a full stack open source web development framework written in Python that encourages rapid development and clean, pragmatic design. Since it's release in 2003 Django has proven to be one of the most efficient modern web frameworks. Over the yea…
-
DJANGO
What Is a Web Framework?Every Web application is a masterpiece handcrafted by a developer. While developing web apps often we need to perform a similar set of most common operations like routing, user authentication, handling files and many more.This is …