본문 바로가기
HTML Table Generator https://www.htmltables.io/ HTML Table Generator — Build and Style Tables Create responsive & accessible HTML tables using our free online HTML Table Generator—no coding skills required. Loved by 1000s of people each month. www.htmltables.io https://www.quackit.com/html/html_table_generator.cfm HTML Table Generator HTML Table Generator Use this HTML Table Generator to create tables on the fly. If.. 2024. 1. 23.
파이썬 if 문의 관계연산자 처리 방법 3가지 비교 # 체 질량지수(BMI) 판별 # 체질량지수 = 체중/키의제곱(m) # 저체중 : 18.5 미만 # 정상 : 18.5 ~ 24.9 # 과체중 : 24.5 ~ 29.9 # 비만 : 30.0 이상 while True: weight = float(input('체중을 입력하세요(0은 종료)')) if weight==0: break if weight < 0: print('올바른 값이 아닙니다.\n다시 입력하세요') continue # 반복문의 처음으로 가라!! height = float(input('신장을 입력하세요(0은 종료)')) if height==0: break if height < 0: print('올바른 값이 아닙니다.\n다시 입력하세요') continue # 반복문의 처음으로 가라!! bmi = we.. 2024. 1. 16.
눈아파요 http://www.psy.ritsumei.ac.jp/~akitaoka/color16e.html Color illusion 16 There appear to be bluish spirals and greenish ones, though they are actually the same color and are yellowish. There appear to be red-purple spirals and orange ones, though they are actually the same color and are light gray. This image consists of pixels www.psy.ritsumei.ac.jp 2024. 1. 12.
지금은 보기 힘든 90년대 초딩의 삶... 그건 약과! https://youtu.be/2B4BRoakcrE?si=eLgMkjZwqUiQ9ZWb https://youtu.be/xDOmYTr_hdE?si=O50xGGocTKhGWgyA https://youtu.be/Fhi_n9wohcc?si=MvY_NnTAzCmcoTb0 https://youtu.be/qgh1XfDrZ8A?si=07uzI0hM8UUkpXVZ https://youtu.be/nySsPGDEUy8?si=ZF3qnFtMgcsDh1cC https://youtu.be/Aht3GsDGBlw?si=jai2jtQ_lbCdFnG2 https://youtu.be/1OW2SuU_2es?si=UuC_YGnF1arfstNo 2023. 12. 20.
python list test str = ["a","b","c"] print(str) print(str[1:]) str.append(["d","e"]) print(str) print(str[3]) str[3]="d" print(str) del str[3] print(str) str.remove("c") print(str) del str[str.index("b")] print(str) str.insert(1,"b") print(str) str+=["c", "d"] print(str) cnt = 0 while cnt < len(str): print(str[cnt], end=" ") cnt += 1 print() cnt = 0 while cnt < len(str): print(str[(cnt + 1) * (-1)], end=" ") cnt.. 2023. 12. 18.
주가 일하시네... 날이 저물어 갈 때 빈들에서 걸을 때 그때가 하나님의 때 내 힘으로 안될 때 빈손으로 걸을 때 내가 고백해 여호와이레 주가 일하시네 주가 일하시네 주께 아끼지 않는 자에게 주가 일하시네 주가 일하시네 신뢰하며 걷는 자에게 우리 모인 이곳에 주님 함께 계시네 누리네 아버지 은혜 적은 떡과 물고기 내 모든 걸 드릴 때 모두 고백해 여호와이레 주가 일하시네 주가 일하시네 주께 아끼지 않는 자에게 주가 일하시네 주가 일하시네 신뢰하며 걷는 자에게 주가 일하시네 주가 일하시네 주께 아끼지 않는 자에게 주가 일하시네 주가 일하시네 신뢰하며 걷는 자에게 신뢰하며 걷는 자에게 2023. 12. 15.