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

Array 3 An array is a special variable, which can hold more than one value at a time. Access the elements of an array Refer to the index number. Example colors = ["white", "blue", "red"] x = colors[0] print (x) white Change the value of third array item. colors = ["white", "blue", "red"] colors[2] = "black" print (colors) ['white', 'blue', 'black'] The length of an array Use len () to get a resu..
Python
2023. 10. 21. 18:38