카페검색 본문
카페글 본문
-
Week 2 Response Paper - Elif 2025.03.10해당카페글 미리보기
안녕하세요 교수님. 이번주 response paper 올립니다. 수업 때 뵙겠습니다. 감사합니다. ELIF_Week2.pdf 110.71KB
-
Re: 오늘의 마지막 문제. 아래의 리스트에서 과일요소들을 가지고 아래의 결과를 출력하시오! 2025.03.11해당카페글 미리보기
products = [] for i in fruits: if i.startswith('사과'): # i의 요소가 '사과' 로 시작하면 true apple_products.append(i) elif i.startswith('바나나'): # i의 요소가 '바나나' 로 시작하면 true banana_products.append(i) elif i.startswith('딸기...
-
Py ; 소숫점 연산 (예) 2025.03.11해당카페글 미리보기
sum = 0.0 while (1): print("Input a number: ") p = float(input()) sum += p if (sum==1.0): print("Hit 1.0") break elif (sum > 1.0): print("Over 1.0") break #if #while #def.abc() ABC() ###### End of Program ##### # 소숫점 수들의 비교...
-
Improvement suggestions and questions for Guild Wars beta2 2025.02.18해당카페글 미리보기
1% for every 1% HP lost | ×0.3 | ×2.0 | if red-blue ratio > 3:1: Trigger overload penalty (2% health loss per second) elif 1:3 < red-blue ratio < 3:1: Gain synergy gain (damage +15%) else: Energy neutralization (gain cleared) ``` 2...
-
[ARM 실습 62] nrf24L01 RF모듈 2.4Ghz 무선통신-2 2025.02.25해당카페글 미리보기
0xB5, 0xB6, 0xCD}; NRF24L01_TxInit(100, NRF24L01_DATA_RATE_1MBPS, 2000); NRF24L01_SetTxAddress(TxAddress1, 2000); #elif RF_RXD // 단일주소 uint8_t RxAddress1[5] = {0xB3, 0xB4, 0xB5, 0xB6, 0xCD}; NRF24L01_RxInit(100, NRF24L01_DATA_RATE_1...