0% found this document useful (0 votes)
17 views20 pages

Chapter 1

Susuuds

Uploaded by

digvijayrrajput3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
17 views20 pages

Chapter 1

Susuuds

Uploaded by

digvijayrrajput3
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 20

Hello Python!

INTRODUCTION TO PYTHON

Hugo Bowne-Anderson
Data Scientist at DataCamp
How you will learn

INTRODUCTION TO PYTHON
General purpose: build anything

Build your skills bit by bit

INTRODUCTION TO PYTHON
IPython Shell
Execute Python commands

INTRODUCTION TO PYTHON
IPython Shell
Execute Python commands

INTRODUCTION TO PYTHON
IPython Shell

INTRODUCTION TO PYTHON
Python Script
Text files - .py
List of Python commands

Similar to typing in IPython Shell

INTRODUCTION TO PYTHON
Python Script

INTRODUCTION TO PYTHON
Python Script

Use print() to generate output from script

INTRODUCTION TO PYTHON
DataCamp Interface

INTRODUCTION TO PYTHON
Let's practice!
INTRODUCTION TO PYTHON
Variables and Types
INTRODUCTION TO PYTHON

Hugo Bowne-Anderson
Data Scientist at DataCamp
Variable
Specific, case-sensitive name
Call up value through variable name

1.79 m - 68.7 kg

height = 1.79
weight = 68.7
print(height)

1.79

INTRODUCTION TO PYTHON
Calculate BMI
height = 1.79 print(68.7 / 1.79 ** 2)
weight = 68.7
print(height)
21.4413

1.79
print(weight / height ** 2)

weight
BMI = 21.4413
height2

bmi = weight / height ** 2


print(bmi)

21.4413

INTRODUCTION TO PYTHON
Reproducibility
height = 1.79
weight = 68.7
bmi = weight / height ** 2
print(bmi)

21.4413

INTRODUCTION TO PYTHON
Reproducibility
height = 1.79
weight = 74.2 # <-
bmi = weight / height ** 2
print(bmi)

23.1578

INTRODUCTION TO PYTHON
Python Types
type(bmi)

float

day_of_week = 5
type(day_of_week)

int

INTRODUCTION TO PYTHON
Python Types (2)
x = "body mass index"
y = 'this works too'
type(y)

str

z = True
type(z)

bool

INTRODUCTION TO PYTHON
Python Types (3)
print(2 + 3)

print('ab' + 'cd')

abcd

Different type = different behavior!

INTRODUCTION TO PYTHON
Let's practice!
INTRODUCTION TO PYTHON

You might also like