SESSION 1

1.PYTHON

>>> - In python it is known as python promt or RPEL (Read–Eval–Print Loop)

>>> print("hello") -Output - hello >>> 5+2 -Output- 7 >>> exit() -Output- it is terminate to the python promt

>>> x="hello"

>>> print(x)

>>> x="hii" >>> x >>>type(x)

>>> x=90

>>> type(x)

>>> x="5"

>>> type(x)

>>> x= True

>>> type(x)

jupyter notebook

Follow steps

1.INSTALL ANACONDA SOFTWARE

(FOR INSTALL CLICK ME)

2.

After type jupyter notebook in cmd it is redirect to -

In right side click New and python 3

List

Lists are similar to arrays in C. A list contains items separated by commas enclosed in square brackets. You can have multiple datatypes in the same list.

list = [100,’abc’,6.7,’f’]

print(list)

print(list[1])

LINK - https://www.geeksforgeeks.org/python-data-types/#list


HOW TO RETRIEVE PARTICULAR COLUMN FROM PYTHON LIST - LIST IS NOT MEANT FOR THIS

  • USING ARRAY CAN DO

ANALYSIS - PAST

ANALYTIC - FEATURE