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

Upper Case Example The upper() method returns the string in upper case. a = "Good Morning!" print(a.upper()) Lower Case Example The lower() method returns the string in lower case. a = "Good Morning!" print(a.lower()) Remove Whitespace Whitespace is the space before and/or after the actual text and if you want to remove it, you can use strip(). a = " Good Night! " print(a.strip()) # returns "Goo..
Python
2023. 10. 22. 12:03