컴퓨터 썸네일형 리스트형 mongodb 몽고db 배열 데이터 저장 수정 검색 mongodb 에서 배열 형태의 데이터를 저장하거나 수정하거나 검색해야 될 때가 있다. 그에 대해 알아보자. 1. 저장 db.room.save({number: 101, reservation: [{in: 1, out: 3}]}) 2. 추가 db.room.update({number: 101}, {$push: {reservation: {in: 3, out: 7}}}) 3. 검색 db.room.find({number: 101}, {"reservation.in": 3, "reservation.out": {$lt: 9}}}) Python 연산자 1. Python Arithmetic Operators 파이썬 산술 연산자 + 덧셈 x + y - 뺄셈 x - y * 곱셈 x * y / 나눗셈 x / y % 나머지 x % y ** 거듭제곱 x ** y // 나머지 버림 x // y 2. Python Assignment Operators 파이썬 대입 연산자 = x = 5 x = 5 += x += 3 x = x + 3 -= x -= 3 x = x - 3 *= x *= 3 x = x * 3 /= x /= 3 x = x / 3 %= x %= 3 x = x % 3 //= x //= 3 x = x // 3 **= x **= 3 x = x ** 3 &= x &= 3 x = x & 3 |= x |= 3 x = x | 3 ^= x ^= 3 x = x ^ 3 >>= x.. Python Casting 파이썬 형 변환 파이썬 형 변환은 간단하다. int(), float(), str() 메서드로 할 수 있다. x = int(1) # x will be 1 y = int(2.8) # y will be 2 z = int("3") # z will be 3 x = float(1) # x will be 1.0 y = float(2.8) # y will be 2.8 z = float("3") # z will be 3.0 w = float("4.2") # w will be 4.2 x = str("s1") # x will be 's1' y = str(2) # y will be '2' z = str(3.0) # z will be '3.0' complex() 메서드도 있다. 별로 쓸 일은 없겠지만 "파이썬 수치형" 글에 사용법을 적어놨다. Python Numbers 파이썬 수치형 1. 수치형 Numbers 파이썬 수치형은 세 가지가 있다. - int 정수형 - float 실수형 - complex 복소수형 x = 1 # int y = 2.8 # float z = 1j # complex 실수형은 익스포넨셜을 이용해 나타낼 수도 있다. x = 35e3 y = 12E4 z = -87.7e100 print(type(x)) print(type(y)) print(type(z)) 복소수형은 실수부와 허수부를 나뉘어 허수부에는 'j'를 붙여서 표시한다. x = 3+5j y = 5j z = -5j print(type(x)) print(type(y)) print(type(z)) 2. 형 변환 Type Conversion int(), float(), complex() 메서드를 이용해 형 변환을 할 수.. Python Data Types 파이썬 데이터 타입 https://www.w3schools.com/python/python_datatypes.asp Python Data Types Python Data Types Built-in Data Types In programming, data type is an important concept. Variables can store data of different types, and different types can do different things. Python has the following data types built-in by default, in these categories: www.w3schools.com 파이썬은 변수를 정의할 때 데이터 타입을 명시하지 않지만 그렇다고 데이터 타입이 없는 것은 .. 이전 1 ··· 63 64 65 66 67 68 69 ··· 88 다음