본문 바로가기
HTML Button Generator https://codebeautify.org/html-button-generator HTML Button Generator Online HTML Button Generator / Creator online to build HTML Button Code syntax which can be copied in HTML. codebeautify.org https://www.htmlcssbuttongenerator.com/css-button-generator.html 🚀 CSS button generator | 2023 custom button CSS & Get code 2023 New generation of css button generator. Style HTML button and click 'get co.. 2024. 1. 24.
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.