본문 바로가기
초 중등 인공지능 교육 내용기준 성격 및 목표 https://www.playsw.or.kr/file/static/6535 https://www.kofac.re.kr/com/file/filedown?_ci=17227&_ck=57cdd7baf3de494cbc35c7aa705e7dba 2024. 1. 25.
Open Graph Meta Tags를 사용합시다. Open Graph Meta Tags의 필요성과 중요성이 많아졌습니다. 특히 카카오톡과 같은 SNS를 통해 사이트 주소를 전송할 때 매우 유용합니다. 또한 블로그 등에서도 유용합니다. 샘플은 다음과 같습니다. ... 최소한 아래는 사용하는 것이 좋습니다. https://ogp.me/ Open Graph protocol The Open Graph protocol enables any web page to become a rich object in a social graph. ogp.me 2024. 1. 25.
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.
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.