본문 바로가기
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.
코랩(Colab)으로 파이썬 코딩하세요! * 구글 드라이브로 시작하는 방법과 직접 주소를 입력하여 시작하는 방법이 있습니다. * https://colab.research.google.com/ Google Colaboratory colab.research.google.com * -에서 하드웨어 가속기를 사용하면 더 빠른 응답을 얻을 수 있습니다. 2023. 5. 31.
로블록스 설치 파일 2022. 12. 17.
로블록스 개발 시작 전 꼭 시청해 보세요. https://www.youtube.com/watch?v=it2UQaN1i7c&list=PL6Zm_z30gEKTyFLB0OWfq8kA4duXhVUE7 2022. 11. 23.