자료출처 https://docs.python.org/3.6/library/functions.html
빅데이터 공부
파이썬의 기본 문법 변수 선언, 식별자, 자료형, 형변환, 연산자 학습 1. 주석(comment)과 출력(print) 주석 : 앞에 #을 붙이면 코드로 실행이 안됩니다. 코드에 대한 설명이나 중간에 코드를 실행시키고 싶지 않을때 사용 단축키 : ctrl(cmd) +
파이썬 기초교재 : 점프 투 파이썬사이트 01 : https://wikidocs.net/book/1사이트 02 : https://www.w3schools.com/python/default.asp빅데이터 분석을 위한 데이터베이스교재 : 없음, 타교재 P
print("niceDay")print('4+5')print("""nicedayhappyday""")print("="\*30)str="Nice Day"print(str)print(len(str))text = "We are the so-called \\"Vikings\\
y = 3.42134234format01 = "{0:0.4f}".format(y)print(format01)format01 = "{0:0.10f}".format(y)print(format01)format01 = "{{and}}".format()print(format01
f1 = open("새파일.txt", 'r')line = f1.readline()print(line)f1.close()f2 = open("새파일.txt", 'r')while True: line = f2.readline() if not line: break
재사용하기 위한것 10103010101010(10, 20) args <class 'tuple'> type 값10 리턴값(10, 20, 30)<class 'tuple'>10(10, 20, 30, 40)<class 'tuple'>10(10, 20, 30,