Crisis in Hong Kong: Beijing used Twitter and Facebook against protesters
Twitter and Facebook may be blocked by the Chinese government, but it obviously does not prevent Beijing to use these networks for propaganda purposes. Chinese authorities have used nearly a…
Huawei wants to launch Map Kit to compete with Google Maps
Despite US sanctions, Huawei's sales increased by nearly 31% in China.After announcing HarmonyOS to no longer depend on Android, the Chinese tech giant is working on a mapping software. One…
A security flaw on Firefox used to steal passwords by copy and paste
It was possible to access the contents of the password manager even if a master password was set.Mozilla recently released Firefox Update 68.0.2. This plugged a flaw that allowed to…
Solution Exercise 5
Exercise 5 Write a program in Python language that asks the user to enter their integer number and to display it if this number is even or odd Solution: #…
Solution Exercise 4
Exercise 4 Write a program in Python language that displays the first 100 integers Solution: for i in range(0,101): print(i)""" this will display at execution the first 100 numbers :…
Python Comments
Content What is a comment in Python? Single line comment Multi-line comment 1. What is a Python comment? Programming languages provide a method for inserting comments within code to provide…
Python Exception: Try - Except
Content What is an exception Structure and syntax of an exception The finally statement 1. What is an exception An exception is an operation performed by an interpreter or compiler…