Skip to main content

Posts

Showing posts from October, 2021

How to experience windows 11 online without installing it on your pc

Link to enjoy the all new windows 11 (online) :  https://win11.blueedge.me/ You can also try it on mobile but can give some crashes and bugs so please use it on pc.   Windows has always existed to be a stage for the world’s innovation. It’s been the backbone of global businesses and where scrappy startups became household names. The web was born and grew up on Windows. It’s the place where many of us wrote our first email, played our first PC game and wrote our first line of code. Windows is the place people go to create, to connect, to learn and to achieve – a platform over a billion people today rely on.

All about PYTHON 3

List of built-in exceptions in Python 3. Base Classes These exceptions are generally used as base classes for other exceptions. Exception Description BaseException The base class for all built-in exceptions. It is not meant to be directly inherited by user-defined classes (for that, use  Exception  below). Exception All built-in, non-system-exiting exceptions are derived from this class. All user-defined exceptions should also be derived from this class. ArithmeticError The base class for built-in exceptions that are raised for various arithmetic errors. These are:  OverflowError ,  ZeroDivisionError ,  FloatingPointError . BufferError Raised when a buffer related operation cannot be performed. LookupError The base class for exceptions that are raised when a key or index used on a mapping or sequence is invalid. These are:  IndexError  and  KeyError . Concrete Exceptions These are the exceptions that are usually raised. Exception Description AssertionError Raised when an  assert  state