You are on page 1of 1

FAQ’s

Q1. Is python free?

Python is completely free and open source. Python is based on community-driven


development, which is mainly carried with GitHub

Q2. Can I install Python on platforms like Mac, Linux etc other than windows?

Yes, Of-course. We can install Python on any platforms. Go to the web site :
https://www.python.org/downloads/ for installation.

Q3. How do I check the version of Python installed on my laptop/desktop computer?

Give the following command on terminal:

python –version

Q4. Do I really need to install Python on my laptop/desktop to run a script?

Not necessary, You can use online Python interpreter to run a Python script without
installation.

Q5. Is there coding standard or a guide for Python programs?

Yes. The coding style required for standard library modules is documented as PEP 8.

Q6. Can I run Python on mobile phone?

If your phone is running the iOS or Android system then you can run Python script on
mobile phone. There are multiple options. Refer the following web page:

https://dev.to/bauripalash/how-to-run-python-programs-on-android-49bg

Q7. Is there any simple way to find the tokens in a Python script instead of finding
manually?

Yes, Use the following command


python -m tokenize [-e] [filename.py]

You might also like