| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- For loops
- multiple lines
- break
- matplotlib
- polynomial regression
- continue
- MySQL
- matplotlib.pyplot
- PANDAS
- line color
- iterates
- Text Analytics
- __init__
- SQL
- Else
- train/test
- Python
- machine learning
- self parameter
- data distribution
- PROJECT
- pie charts
- Default X points
- AS
- variables
- Github
- start exercise
- line width
- Text mining
- error
- Today
- Total
목록Python (42)
Data Science Explorer
Rules for Python variables: A variable name must start with a letter or the underscore character A variable name cannot start with a number A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ ) Variable names are case-sensitive (age, Age and AGE are three different variables) A variable name cannot be any of the Python keywords For better understanding, ple..
Creating Variables Variables are containers for storing data values and they are created the moment you assign. Example x = 4 y = "Jack" print(x) print(y) They do not need to be declared with any particular type, and can even change type after they have been set. Example x = 4 # x is of type int x = "Sarah" # x is now of type str print(x) Casting Variables can be done with casting if you want to..