일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- array
- function
- assignment operator
- vscode
- string
- baekjoon
- Object Oriented Programming
- Pre-processing
- 파이썬
- 티스토리챌린지
- 오블완
- 문자열
- 배열
- 반복문
- OOP
- Data Science
- raw data
- 백준
- Deep Learning
- 함수
- Class
- 포인터
- Python
- const
- pointer
- pass by reference
- predictive analysis
- C++
- 알고리즘
- programming
- Today
- Total
목록2025/02/21 (2)
Channi Studies
An iterable is an object, obj, that produces an iterator via the syntax iter(obj).An iterator is an object that manages the iteration of a series of values. If variable it identifies an iterator object, then each call to the built-in function, next(it), produces a subsequent element from the underlying series, with a StopIteration exception raised to indicate that there are no further elements. ..

Python provides various bitwise operators that allow for convenient manipulation of the individual bits of a binary representation of an integer. For example, the integer 23 is represented in binary with rightmost bits 00010111 and the integer 13 is represented in binary with rightmost bits 00001101. The bitwise and operation, 23 & 13, produces integer 5, which has bit 1 in each position for whi..