본문 바로가기

분류 전체보기106

파이썬 프로그래밍을 향한 첫 단계 파이썬 프로그래밍을 향한 첫 단계 물론 2와 2를 합치는 것보다 더 복잡한 작업에 Python을 사용할 수 있습니다. 예를 들어, Fibonacci series의 초기 하위-수열을 다음과 같이 작성할 수 있습니다: Of course, we can use Python for more complicated tasks than adding two and two together. For instance, we can write an initial sub-sequence of the Fibonacci series as follows: ​ >>> # Fibonacci series: ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while a .. 2023. 12. 17.
How to Build Your Own AI Chatbot With ChatGPT API: A Step-by-Step Tutorial – BeebomChatGPT API를 사용하여 자신만의 AI 챗봇을 구축하는 방법: 단계별 튜토리얼 – Beebom How to Build Your Own AI Chatbot With ChatGPT API: A Step-by-Step Tutorial – Beebom ChatGPT API를 사용하여 자신만의 AI 챗봇을 구축하는 방법: 단계별 튜토리얼 – Beebom ​ By Josh Durso - December 8, 2023 ​ ​ In a breakthrough announcement, OpenAI recently introduced the ChatGPT API to developers and the public. Particularly, the new “gpt-3.5-turbo” model, which powers ChatGPT Plus has been released at a 10x cheaper price, .. 2023. 12. 16.
인터프리터 호출하기 Invoking the Interpreter Using the Python Interpreter ​ 인터프리터 호출하기 Invoking the Interpreter ​ 파이썬 인터프리터는 보통 사용가능한 기계 C:\Users\user> 에 설치됩니다; The Python interpreter is usually installed as C:\Users\user> on those machines where it is available; ​ Windows의 검색경로 C:\Users\user> 에 python을 입력하면 됩니다. ​ ​ 인터프리터가 위치하는 디렉터리 선택은 설치 옵션이기 때문에, 다른 장소도 가능합니다; Since the choice of the directory where the interpreter lives is an installa.. 2023. 12. 16.
Colab 이란? Colab이란? ​ Colaboratory(줄여서 'Colab'이라고 함)을 통해 브라우저 내에서 Python 스크립트를 작성하고 실행할 수 있습니다. ​ 구성이 필요하지 않음 무료로 GPU 사용 간편한 공유 ​ 학생이든, 데이터과학자든, AI 연구원이든 Colab으로 업무를 더욱 간편하게 처리할 수 있습니다. ​ 지금 읽고 계신 문서는 정적 웹페이지가 아니라 코드를 작성하고 실행할 수 있는 대화형 환경인 Colab 메모장. ​ 예를 들어 다음은 값을 계산하여 변수로 저장하고 결과를 출력하는 간단한 Python 스크립트가 포함된 코드 셀. ​ seconds_in_a_day = 24 * 60 * 60 seconds_in_a_day ​ Output ​ 86400 ​ ​ 위 셀의 코드를 실행하려면 셀을 클릭하.. 2023. 12. 15.