본문 바로가기

전체 글

(163)
TIL 23-03-16 https://github.com/sdoram/twelve_months_project GitHub - sdoram/twelve_months_project: 12조 팀원 소개 프로젝트 12조 팀원 소개 프로젝트. Contribute to sdoram/twelve_months_project development by creating an account on GitHub. github.com 이제까지 내 파일만 올려서 몰랐던 내용을 이번에 알게 됐다. git pull 깃에서 push 하기 전에 변경사항이 있으면 먼저 pull로 받아야 함. .gitignore 파일 서로 다른 가상환경을 추가 설치하지 않고 본인 로컬 환경에서 실행가능하게 함 settings > pages에서 index.html 파일 하나라면 g..
TIL 23-03-15 https://github.com/sdoram/twelve_months_project GitHub - sdoram/twelve_months_project: 12조 팀원 소개 프로젝트 12조 팀원 소개 프로젝트. Contribute to sdoram/twelve_months_project development by creating an account on GitHub. github.com onclick으로 홈페이지 이동 구현 입력값에 따라서 alert출력 time 함수 추가, 글 작성시간 호출 title 옆 파비콘 추가 백엔드 경로 연결 오늘은 시간이 굉장히 빠르게 지나갔다. 내일 결과물을 잘 마무리해서 만들었으면 좋겠다.
TIL 23-03-14 https://github.com/sdoram/twelve_months_project GitHub - sdoram/twelve_months_project: 12조 팀원 소개 프로젝트 12조 팀원 소개 프로젝트. Contribute to sdoram/twelve_months_project development by creating an account on GitHub. github.com index.html posting함수 작성 content3.html record함수 작성 content2.html listing함수 작성 app.py 파일 작성 jquery 사용법과 mongodb사용법 배움 git bash로 커밋하는 연습
[Python] 딕셔너리 자료형 딕셔너리 자료형(순서O 에러 발생 print(a.get('name1')) #존재x -> None 처리 # dict_keys, dict_values, dict_items : 반복문__iter__(iterate) 사용 가능 print('Name' in a) # 대소문자 구분 print(a.popitem()) print(a.popitem()) print(a.popitem()) print(a.popitem()) # print(a.popitem()) # 값이 없으면 에러 발생 출처 : 인프런,인프런, 2023-03-10, https://www.inflearn.com/course/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%E..
[Python] 튜플 자료형 튜플 자료형(순서O, 중복O, 수정X, 삭제X) # 불변 b = (1, ) # 1개일 때 , 없으면 tuple로 인식 안함 # 팩킹 & 언팩킹(Packing, and Unpacking) # 팩킹 & 언팩킹 t2 = (1, 2, 3) # t2 = 1, 2, 3 # 팩킹 t3 = (4,) # t3 = 4, # 팩킹 x1, x2, x3 = t2 # 언팩킹 x4, x5, x6 = 4, 5, 6 # 언팩킹 print(t2) print(t3) print(x1, x2, x3) print(x4, x5, x6) 출처 : 인프런,인프런, 2023-03-10, https://www.inflearn.com/course/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%ED%8C%8C%EC%9..
TIL 23-03-13 git bash 명령어
[Python] 리스트 자료형 리스트 자료형(순서O, 중복O, 수정O, 삭제O) # 값 비교 print(c == c[:3] + c[3:]) # 리스트 함수 a = [5, 2, 3, 1, 4] a.append(10) a.sort() # 정렬 a.reverse() # 역순 정렬 print(a.index(3), a[3]) # 결과 값: 3 3 a.insert(2, 7) del a[7] a.remove(10) a.pop() ex = [8, 9] a.extend(ex) # 삭제 remove, pop, del 출처 : 인프런,인프런, 2023-03-10, https://www.inflearn.com/course/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%ED%8C%8C%EC%9D%B4%EC%8D%AC-%..
[Python] 문자열 자료형 # 빈 문자열 str_t1 = '' str_t2 = str() # Raw String raw_s1 = r'D:\Python\test' raw_s2 = r"\\x\y\z\q" # 멀티라인 입력 # \사용하여 입력 multi_str1 = \ """ 문자열 멀티라인 입력 테스트 """ # 문자열 함수(upper, isalnum, startswith, count, endwith, isalpha...) print("Capitalize: ", str_o1.capitalize()) # 첫 글자를 대문자로 출력 print("endswith?:", str_o2.endswith("s")) # 끝 글자를 'bool'형태로 알려줌 print("join str: ", str_o1.join(["I'm ", "!"])) print..