Posts

HOW TO UPDATE TO WINDOWS 11?

Image
How to update to windows 11   As you all heard that Microsoft rolled out it's windows 11 operating system with a lot of new features. Windows 11 is a major version of the Windows NT operating system developed by Microsoft that was announced on June 24, 2021, and is the successor to Windows 10, which was released in 2015. In this story I am going to guide you on how to do this update for windows 10 users. First the users must ensure that the minimum system requirements is satisfied or you can use the checkup tool provided by Microsoft. Minimum requirements: Processor 1 gigahertz (GHz) or faster with 2 or more cores on a compatible 64-bit processor or System on a Chip (SoC). RAM 4 gigabyte (GB) Storage 64 GB or larger storage device Note: See below under "More information on storage space to keep Windows 11 up-to-date" for more details. System firmware UEFI, Secure Boot capable. Check here for information on how your PC might be able to meet this requirement. TPM Trusted Pl

#1 Python Beginner Project|How to build a calculator in 3 steps|

Image
    Python Project - Build a simple calculator     How to build a calculator using python?     answer: `   Source Code:    def add (no1 , no2): return no1+no2 def subtract (no1 , no2): return no1 - no2 def multiply (no1 , no2): return no1 * no2 def divide (no1 , no2): return no1/no2 first_num = int ( input ( "First number: " )) operator = input ( "(+)or(-)or(*)or(/)" ) second_num = int ( input ( "Second number: " )) if operator == '+' : answer = add(first_num , second_num) elif operator == "-" : answer = subtract(first_num , second_num) elif operator == '*' : answer = multiply(first_num , second_num) elif operator == '/' : answer = divide(first_num , second_num) print ( f"Answer = { answer } " )  

QR Code Generator with Python(Beginner) in 3 lines

Image