Soultion Exercise 37 - list of words common to two strings
Exercise 37 Write a Python program that creates a list whose elements are the common words to two strings s1 and s2. Solution def commonWords(s1 , s2): listCommonWords = []…
Solution Exercise 36: Python program to delete multiple spaces
Exercice36 Write a program in Python to delete multiple spaces in a string Solution: # Example of strings containing multiple spacess = " Python is object oriented a programming language"#…
The Python OS module
The os module is a module provided by Python whose purpose is to interact with the operating system, it thus makes it possible to manage the tree structure of files,…
Python modules
1 - What is a Python module ? A module in Python is simply a file made up of Python code that you can call and use its code without…
Stadia: Google reveals the names of a few excluded on approach
Stadia has had a difficult start. It is blamed more than compliments and Google is trying to reverse the trend by revealing a list of games and improvements scheduled…
Python Inheritance
Content About Inheritance In OOP Python How To Us The Inheritance In OOP Python Multiple inheritance 1. About Inheritance In OOP Python To avoid copying the code of a class,…
Google Maps: a major new version for the mobile app
Google’s famous map and route app is getting a complete overhaul in its mobile version on both Android and iOS.A few days ago, Google celebrated the 15th anniversary of Maps,…