There is brand-new Xiaomi Wireless AR Smart Glasses
Xiaomi, the Chinese multinational electronics company, has recently launched its brand-new Xiaomi Wireless AR Smart Glasses. These glasses have created a buzz in the tech world due to...
The OnePlus 11R has been revealed to use a Snapdragon 8+ Gen 1 processor
OnePlus is having a big event on February 7, where it will launch the OnePlus 11 and Buds...
Zoom Lays Off 1,300 Employees: A Look at the Impact and Reactions
Zoom, the popular video conferencing platform, has recently announced the layoff of approximately 1,300...
Dell Inspiron 24 AIO: A Stylish and High-Performance All-in-One Desktop Review
The Dell Inspiron 24 AIO is a compact and stylish all-in-one desktop computer that...
The Future of Bitcoin and Cryptocurrency Outlook in 2023
Bitcoin and cryptocurrency have come a long way since their inception, and the future...
How to Extract Text From Videos using Python
Speech recognition is an interesting task that allows you to recognize the text behind the audio. With the use of voice recognition, we can...
Python Identifier and Keywords
Keywords
Keywords are the reserved words in Python. We cannot use a keyword as variable name, function name or any other identifier. They are used...
List of Keywords in Python
List of Keywords in Python
Keywords in Python programming language
False
class
finally
is
return
None
continue
for
lambda
try
True
def
from
nonlocal
while
and
del
global
not
with
as
elif
if
or
yield
assert
else
import
pass
break
except
in
raise
The above keywords may get altered in different versions of Python. Some extra might get added...
Building an FTP Password Cracker In Python
Python is probably the most widely used scripting language for hackers. This is primarily because it has some built-in modules and libraries that make...
Simple Encryption and Decryption Python
Simple example of encryption text
simple encryption.py
# Sample Python/Pygame Programs
# http://simpson.edu/computer-science/
plain_text = "This is a test. ABC abc"
encrypted_text = ""
for c in plain_text:
...
Search Twitter’s Tweeted Tweet By Python
Overview
Twitter's API is REST-based and will return results as either XML or JSON, as well as both RSS and ATOM feed formats. Public timelines...
Replace String in Python
Often you'll have a string (str object), where you will want to modify the contents by replacing one piece of text with another. In...
Get the Geo Location of an IP Address Python
Geolocate an IP address based on input from the user. For this script, we will be using a bunch of Python modules to accomplish...
Make Simple Calculator Program in Python
In this program, we ask the user to choose the desired operation. Options 1,2,3 and 4 are valid. Two numbers are taken and an...
Download a complete Website using Python in 4 steps
One of the most viral news circulating on the internet is the Python Web Crawler, that crawls a website you ask it to and...
Code your first simple SQL Injection checking vulnerability with Python
Hello, today we are making an Python MySQL SQL Injection checking tool. That's why we named it Code your first simple SQL Injection checking vulnerability...