Programming137 파이쏘닉 Pythonic 코드 쓰는 법 부스트코스의 "머신러닝을 위한 파이썬" 강좌 필기 내용 https://www.boostcourse.org/ai222/joinLectures/28027 # 일반 코드 colors = ["a", "b", "c", "d", "e"] result = "" for s in colors: result += s # print(result) # abcde # pythonic code colors = ["red", "blue", "green", "yellow"] result = "".join(colors) # print(result) # redbluegreenyellow ### Split 함수 '''칸을 기준으로 문자열을 나누어줌''' items = 'zero one two three'.split() # print(it.. 2022. 10. 14. 티스토리 블로그에서 윗첨자, 아랫첨자쓰기 첨자쓰기 HTML에서 편집해주어야 한다. 윗첨자 쓰는 코드 : (쓸 문자)(윗첨자) 아래첨자 쓰는 코드 : (쓸 문자)(윗첨자) 윗첨자 쓰기 : σ2 아래첨자 쓰기 : σp 둘다 같이 쓰기 : σXα2 예시 그냥 파이썬 코드 올려봄 Python print("hello") def print(): print("hello") 2022. 8. 13. 이전 1 ··· 25 26 27 28 다음