Python Interview Questions and Answer Part – 1

What Python function is used to open files? open_file() file() new_file() open() (Ans) What does the pass keyword do? Passes control to another function Continues to the next iteration of…

Read more »

Python Tutorials: Web References & Cheatsheet

https://www.learnbyexample.org/python/ Best Books for Learning Python https://www.programiz.com/python-programming/variables-datatypes https://data-flair.training/blogs/python-string/ https://www.journaldev.com/26711/python-logical-operators https://www.geeksforgeeks.org/python-list/ https://www.programiz.com/python-programming/dictionary https://www.learnbyexample.org/python-if-else-elif-statement/ https://www.programiz.com/python-programming/if-elif-else https://www.askpython.com/python/python-functions https://www.learnbyexample.org/python-functions/ https://www.learnbyexample.org/python-classes-and-objects/ https://realpython.com/courses/ https://www.learnbyexample.org/python-file-handling/ https://www.roytuts.com/python-web-application-crud-example-using-flask-and-mysql/

Read more »

Python Tutorials: How to use pip command to Python3.x instead of Python2.7?

First of all, pip is made for Python2.x and pip3 is made for Python3.x. Thus you need to select wisely which version of module you are installing. Installing through pip3…

Read more »

Python Tutorials: List of Python Environment Variables

Here are important environment variables, which can be recognized by Python − Sr.No. Variable & Description 1 PYTHONPATHIt has a role similar to PATH. This variable tells the Python interpreter…

Read more »

Run a .bat file using python code

rajeshkumar created the topic: Run a .bat file using python code from subprocess import Popen p = Popen(“batch.bat”, cwd=r”C:\Path\to\batchfolder”) stdout, stderr = p.communicate() Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Read more »

Perforce Python Script Collection.

rajeshkumar created the topic: Perforce Python Script Collection. Implement a script that will do following: 1. Read config file. This file will contain following settings: a. For mail delivery (SMTP)…

Read more »

How do I convert a python program to a windows executable from Linux?

rajeshkumar created the topic: How do I convert a python program to a windows executable from Linux? I use Linux and Windows with some friends a few programs I like…

Read more »

Any Possible Software/Plugin FoR SCM Workflow

pankaj2252369@gmail.com created the topic: Any possible Software/plugin for SCM workflow? Hey Team, Thanks for lot of information on the site. wonderful work. Any idea on SCM workflow software/framework ? which…

Read more »