PYTHON(파이썬)
-
예시로 배우는 파이썬 (PACKAGE)PYTHON(파이썬)/파이썬 기초 2024. 10. 17. 05:23
############################################################################## Python 기초 15 : Package# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 ############################################################################# import travel.ttrip_to = travel.t.tPackage()trip_to.detail() from travel.v import vPackagetrip_to = vPackage()trip_to.detail() from travel import * trip_to = ..
-
예시로 배우는 파이썬 (모듈)PYTHON(파이썬)/파이썬 기초 2024. 10. 17. 05:20
############################################################################## Python 기초 15 : 모듈1# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 ############################################################################# import price as ps ps.price(3) ps.price_m(2) from price import * price(3)price_m(10)price_s(10) from price import price, price_m price(11)price_m(20) Goover는?파이썬에서..
-
예시로 배우는 파이썬 (예외처리)PYTHON(파이썬)/파이썬 기초 2024. 10. 17. 05:17
############################################################################## Python 기초 14 : 예외처리# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 #############################################################################try: print("나누기 전용 계산기입니다.") num1 = int(input("첫 번째 숫자를 입력하세요 : ")) num2 = int(input("두 번째 숫자를 입력하세요 : ")) print("{0} / {1} = {2}".format(num1, num2, ..
-
예시로 배우는 파이썬 (CLASS)PYTHON(파이썬)/파이썬 기초 2024. 10. 17. 05:13
Goover는?파이썬의 클래스(Class)에 대한 설명을 드리겠습니다. 클래스는 객체 지향 프로그래밍(OOP)의 기본 개념 중 하나로, 변수와 메서드를 정의하여 특정 객체를 생성할 수 있는 틀(template)입니다. 클래스는 객체를 정의하는 방법을 제공하여 코드의 재사용성을 높이고, 코드 구조를 더 명확하게 만들어 줍니다.1. 클래스의 기본 구조파이썬에서 클래스를 정의하는 것은 매우 간단합니다. 기본적인 문법은 다음과 같습니다:class MyClass: def method1(self): print("Hello from method1!") def method2(self, some_string): print("Message: " + some_string)# 클래스 인스턴..
-
예시로 배우는 파이썬 (WITH)PYTHON(파이썬)/파이썬 기초 2024. 10. 15. 05:35
############################################################################## Python 기초 12 : with# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 ############################################################################# with open("study.txt", "w", encoding = "utf8") as s_file: s_file.write("파이썬은 GOOD!") with open("study.txt", "r", encoding = "utf8") as s_file: print(s_file.read()..
-
예시로 배우는 파이썬 (pickle)PYTHON(파이썬)/파이썬 기초 2024. 10. 14. 08:51
############################################################################## Python 기초 12 : pickle# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 #############################################################################import pickle p_file = open("profile.pickle", "wb")profile = {"이름":"박명수", "나이":30, "취미":{"축구", "골푸", "코딩"}}print(profile) pickle.dump(profile, p_file)p_file.clos..
-
ChatGPT Canvas로 5분만에 만든 게임PYTHON(파이썬)/PYGAME(GAME) 2024. 10. 13. 06:01
# pip install pygameimport pygame import time import random # 초기화 pygame.init() # 색상 정의 white = (255, 255, 255) # 배경 색상 black = (0, 0, 0) # 뱀 색상 red = (213, 50, 80) # 게임 종료 메시지 색상 green = (0, 255, 0) # 먹이 색상 blue = (50, 153, 213) # 점수 색상 # 화면 크기 설정 width = 600 height = 400 display = pygame.display.set_mode((width, height)) # 게임 화면 생성 pygame.display.set_caption('Snake Game') # 게임 제목 설정 clo..
-
예시로 배우는 파이썬 (파일 입/출력)PYTHON(파이썬)/파이썬 기초 2024. 10. 13. 05:08
####################################### # Python 기초 11 : 파일 입/출력 # eplus(http://www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 ####################################### score_file = open("score.txt", "w", encoding="utf8") print("수학 : 100", file= score_file) print("영어 : 50", file = score_file) score_file.close score_file = open("score.txt", "a", encoding="utf8") score_file.write("과학 : 90") sco..