Django Administrator Interface (super user)
Django provides an integrated administration module that can be used to perform CRUD (create, read, update, delete) operations on models and applications on the django site. It provides a quick…
Python Courses & Exercises with solutions !
Django provides an integrated administration module that can be used to perform CRUD (create, read, update, delete) operations on models and applications on the django site. It provides a quick…
Exercise 60 Write a Python program that allows you to count the frequency of repetition of each word found in a given file. Solution # opening the myfile.txt in read…
1 - Creation of the django project If you are using Django for the first time, you will have to take into account the initial configuration. In particular, you will…
0 - About Python Django Framework Django is an open source web development framework in Python. It aims to make web 2.0 development simple and fast. For this reason, the…
1 - About Python request module Requests is a python module allowing to use the http protocol in a very simple way! You will discover its power when you want…
Exercise 59 Write a Python program that displays the longest word found in a text file. Solution # opening the existing file in read modf = open("monFichier.txt", 'r')# getting the…
Exercise 58 a) Write a program that lists all the folders in the 'C: / Windows' directoryb) write another program which lists all the files in the 'C: / Windows' …