Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- polynomial regression
- SQL
- break
- Text mining
- Default X points
- self parameter
- Else
- start exercise
- variables
- PANDAS
- continue
- line color
- Github
- AS
- matplotlib.pyplot
- error
- data distribution
- For loops
- multiple lines
- line width
- train/test
- matplotlib
- Text Analytics
- machine learning
- Python
- iterates
- PROJECT
- __init__
- pie charts
- MySQL
Archives
- Today
- Total
목록int (1)
Data Science Explorer

There are three numeric types in Python which are int(), float(), complex(). Int() It is a whole number, positive or negative (without decimals). Example x = 2 y = -2 print (x) print (y) Float() It is a number, positive or negtiave, containing one or more decimals. Example x = 1.89 print(type(x)) Example = 35e3 y = -67.7e100 print(type(x)) print(type(y)) Complex() They are numbers that are writt..
Python
2023. 10. 20. 12:49