Variable Data Types

Nhập môn Python cho Tài chính

Adina Howe

Professor

Python Data Types

Variable Types Example
Strings 'hello world'
Integers 40
Floats 3.1417
Booleans True or False
Nhập môn Python cho Tài chính

Variable Types

Variable Types Example Abbreviations
Strings 'Tuesday' str
Integers 40 int
Floats 3.1417 float
Booleans True or False bool
Nhập môn Python cho Tài chính

What data type is a variable: type()

To identify the type, we can use the function type():

type(variable_name)
pe_ratio = 40
print(type(pe_ratio))
<class 'int'>
Nhập môn Python cho Tài chính

Variable manipulations

x = 5
print(x * 3)
15
print(x + 3)
8
y = 'stock'
print(y * 3)
'stockstockstock'
print(y + 3)
TypeError: must be str, not int
Nhập môn Python cho Tài chính

Changing variable types

pi = 3.14159
print(type(pi))
<class 'float'>
pi_string = str(pi)
print(type(pi_string))
<class 'str'>
print('I love to eat ' + pi_string + '!')
I love to eat 3.14159!
Nhập môn Python cho Tài chính

Let's practice!

Nhập môn Python cho Tài chính

Preparing Video For Download...