Python Username and Password using if .. else September 15, 2021 Easy ways to check username and password by using simple if else statement.Ex.username = "saransh"password = "Saransh77"x = input("enter your username- ")y = input("enter your password- ")if x == username: if y == password: print("Okay Right..!")else: print("please enter correct username or password.")OUTPUT Share Get link Facebook X Pinterest Email Other Apps Labels Python Decision Making Share Get link Facebook X Pinterest Email Other Apps Comments
Reverse String In Python By Simple Methods September 13, 2021 x = "Code By Saransh" y = x[::-1] print(y) OUTPUT hsnaraS yB edoC Read more
HOW TO MAKE BLOG WEBSITE August 24, 2022 HOW TO MAKE BLOG 👊👊 STEP 1 - OPEN GOOGLE CHROME STEP 2 - TYPE - BLOGGER -> CLICK CREATE NEW BLOG STEP 3 - SELECT GMAIL ACCOUNT STEP 4 - NAME YOUR BLOG -> WEBSITE NAME Read more
Comments
Post a Comment