반응형
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
- GIT
- gas
- google apps script
- Java
- hive
- Excel
- PostgreSQL
- Mac
- Kotlin
- c#
- Google Excel
- math
- string
- 파이썬
- numpy
- SQL
- Redshift
- Github
- PySpark
- dataframe
- array
- Google Spreadsheet
- list
- Apache
- PANDAS
- Tkinter
- django
- Python
- matplotlib
Archives
- Today
- Total
목록END (1)
달나라 노트
Python Basic : print (문자 출력하기, python 문자 출력)
print method는 어떤 문자를 출력해줍니다. print('Hello world!') print('a') print('b') print('c') print(1) print(2) print(3) -- Result Hello world! a b c 1 2 3 사용법은 매우 간단합니다. print method의 parameter에 출력하길 원하는 텍스트들을 전달하면 됩니다. print('Hello world!', 'a', 'b', 'c', 1, 2, 3) -- Result Hello world! a b c 1 2 3 출력하길 원하는 문자가 여러개라면 위처럼 콤마로 구분해서 전달하면 됩니다. print method는 일단 호출이되면 어떤 문자를 출력한 후 줄바꿈을 합니다. 아래 예시처럼요. print('H..
Python/Python Basic
2022. 1. 27. 20:02