Saturday, August 30, 2025

How to upgrade pip module in python ?

anurag@Anurags-MacBook-Air ~ % 

anurag@Anurags-MacBook-Air ~ % python3 -m pip install --upgrade pip

Defaulting to user installation because normal site-packages is not writeable

Requirement already satisfied: pip in /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages (21.2.4)

Collecting pip

  Downloading pip-25.2-py3-none-any.whl (1.8 MB)

     |████████████████████████████████| 1.8 MB 4.3 MB/s 

Installing collected packages: pip

  WARNING: The scripts pip, pip3 and pip3.9 are installed in '/Users/anurag/Library/Python/3.9/bin' which is not on PATH.

  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

Successfully installed pip-25.2

WARNING: You are using pip version 21.2.4; however, version 25.2 is available.

You should consider upgrading via the '/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip' command.

anurag@Anurags-MacBook-Air ~ % 

anurag@Anurags-MacBook-Air ~ % 




anurag@Anurags-MacBook-Air ~ % python3 -m pip --version

pip 25.2 from /Users/anurag/Library/Python/3.9/lib/python/site-packages/pip (python 3.9)

anurag@Anurags-MacBook-Air ~ % 

Thursday, August 21, 2025

Print with separator

 

print("2025", "09", "21", sep="-")  


output :

2025-08-21

Tuesday, July 22, 2025

WTP in python - Traffic Light Simulator

 # Traffic Light Simulator

# Input a color (red, yellow, green) and print the corresponding action:


# Red → Stop

# Yellow → Get Ready

# Green → Go


light_type=input("Please enter the light type (red, yellow, green ) : ")



if(light_type=="red"):

    print("Stop")

elif(light_type=="yellow"):

    print("Get Ready")

elif(light_type=="green"):

    print("Go")

else:

    print("wrong input")

WTP in python - Login System

 # Login System

# Ask for a username and password. 

# If both match predefined values, print "Login successful", else show appropriate error messages.

#username : abc

#password : 123



user=input("Please enter username: ")

password= input("Please enter the password:  ")


if(user=="abc" and password == "123"):

    print("Login successful")

elif(user != "abc" and password != "123"):

    print("both Incorrect Username and Password ")

elif (user != "abc"):

    print("Username is not correct ")

else:

    print("password is incorrect ")