Getting Started with various Tools

7 / 43

Python 3

Purpose: Python is an interpreted high-level general-purpose programming language. It is popularly used for Machine Learning and Deep Learning.

Home Page: https://www.python.org/

Documentation: https://www.python.org/doc/

Related resources to learn: https://cloudxlab.com/assessment/playlist-intro/459/foundations-of-python?course_id=124&playlist_id=459

How to get started:

  • Using Command Line Interface

    In the web console tab on the right side of the screen, type the following command to enter the default Python IDE

    export PATH=/usr/local/anaconda/bin:$PATH
    
    python
    

    You can check the version using the below command at the Command Line (outside the Python prompt)

    python -V
    
  • Using Jupyter notebook

    In the Notebook tab on the right side of the screen, make sure to be using Python3 Kernel. If not, you may change the kernel to Python3 as follows:

    Click on Kernel -> Change Kernel -> Python3 from the menu at the top


No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...