Final Result

code

You must install QR code library By typing "pip install random"on the command prompt after install python app and vscode by default you run and debugon vscode


                                import random

                                lower_case = "abcdefghijklmnopqrstuvwxyz"
                                upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
                                numbers = "0123456789"
                                Symbols = "@#$%-*/\?"
                                
                                Use_for = lower_case + upper_case + numbers + Symbols
                                length_for_pass = 25
                                
                                password = "".join(random.sample(Use_for , length_for_pass))
                                
                                print("Your generated password is :", password)
                                
                                
                                .© Copyright Arsani-Tech. All rights reserved
                            
download Code