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
- variables
- matplotlib.pyplot
- polynomial regression
- machine learning
- data distribution
- Default X points
- Python
- Else
- continue
- error
- Text mining
- MySQL
- multiple lines
- start exercise
- For loops
- PANDAS
- train/test
- Text Analytics
- line color
- pie charts
- iterates
- break
- Github
- matplotlib
- PROJECT
- line width
- __init__
- self parameter
- SQL
- AS
Archives
- Today
- Total
목록float (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