Install Django Python Framework
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…
Python request module
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…
Solution Exercise 59: Python program to find the longest word in text file
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…
Solution Exercise 58: Python program to find the list of files and directories
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' …
Solution Exercise 57: program python to transform a content of a file by writing each word on separate line
Exercise 57 Given a file called myfile.txt which contains the following text:"Python is object oriented programming language".Write a program in Python that transforms the content of the file by writing…
Solution Exercise 56: Python code to insert line and exchange two lines in txt file
Exercise 56 Given a file called myfile.txt which contains the following lines: line 1line 2line 3 write a Python program that transforms the content into the form: line 3this line…
Solution Exercise 55: python program that remove the 3rd word from a file
Exercice 54 1) Write a Python program that create a txt file called myfile.txt and write on it the texte: "Python is object oriented programming language".2) Write an ohter python…