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 Courses & Exercises with solutions !
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' …
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…
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…
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…