파이썬 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. 로블록스 스튜디오 필수 설치 플러그인 1. Building Tools by F3X 로블록스의 불편한 파츠 제어를 편리하게 해주는 필수 플러그인 예를 들어 여러 개의 블록을 선택하고 한꺼번에 길이를 조절하려면... https://www.roblox.com/library/144950355/Building-Tools-by-F3X-Plugin Building Tools by F3X (Plugin) - Roblox Please enable Javascript to use all the features on this site. www.roblox.com 2. Stravant - GapFill & Extrude 파츠와 파츠를 연결하고 채워주는 편리한 플러그인 https://www.roblox.com/library/165687726/Stravant-Gap.. 2022. 11. 23. 이전 1 2 3 4 5 ··· 11 다음