Python Archives - Pushakar Gaikwad https://pushakar.com/category/software-development/programming/python/ Software Developer, Blogger, Tech enthusiast Wed, 11 Jun 2025 07:21:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.1 208136840 Python Snippets Cheatsheet https://pushakar.com/2025/06/11/python-cheatsheet-snippets/ https://pushakar.com/2025/06/11/python-cheatsheet-snippets/#respond Wed, 11 Jun 2025 07:21:09 +0000 https://pushakar.com/?p=4360 Python is vast. This cheatsheet is for quick lookups WIP. This will grow longer. Think of this as snippet or github gist dump Strings fstrings age = 22 print(f" You are {age} years old") I have other article covering python tips in python cheatsheet

The post Python Snippets Cheatsheet appeared first on Pushakar Gaikwad.

]]>
Python is vast. This cheatsheet is for quick lookups WIP. This will grow longer. Think of this as snippet or github gist dump Strings fstrings age = 22 print(f" You are {age} years old") I have other article covering python tips in python cheatsheet

The post Python Snippets Cheatsheet appeared first on Pushakar Gaikwad.

]]>
https://pushakar.com/2025/06/11/python-cheatsheet-snippets/feed/ 0 4360
Boost Your Python Workflow: Pip and Anaconda Tips https://pushakar.com/2024/11/13/python-cheatsheet/ https://pushakar.com/2024/11/13/python-cheatsheet/#respond Wed, 13 Nov 2024 04:10:27 +0000 https://pushakar.com/?p=4022 Python Cheatsheet PIP (Python Package Installer) Update a pip package pip install --upgrade package-name Clean pip cache pip cache purge Anaconda / miniconda Command-Line Tips Managing Environments Create new conda environment conda create --name environment_name python=3.11 You can replace the 3.11 with any the python version as required Remove conda environment conda env remove --name … Continue reading Boost Your Python Workflow: Pip and Anaconda Tips

The post Boost Your Python Workflow: Pip and Anaconda Tips appeared first on Pushakar Gaikwad.

]]>
Python Cheatsheet PIP (Python Package Installer) Update a pip package pip install --upgrade package-name Clean pip cache pip cache purge Anaconda / miniconda Command-Line Tips Managing Environments Create new conda environment conda create --name environment_name python=3.11 You can replace the 3.11 with any the python version as required Remove conda environment conda env remove --name … Continue reading Boost Your Python Workflow: Pip and Anaconda Tips

The post Boost Your Python Workflow: Pip and Anaconda Tips appeared first on Pushakar Gaikwad.

]]>
https://pushakar.com/2024/11/13/python-cheatsheet/feed/ 0 4022