Python 프로그래밍에 대한 궁극적인 가이드
*파이썬 프로그래밍의 특징 -
*
- OOP 뿐만 아니라 기능적이고 구조화된 프로그래밍 방식을 지원합니다.
- 스크립팅 언어로 사용하거나 대규모 응용 프로그램을 빌드하기 위해 바이트 코드로 컴파일할 수 있습니다.
- 매우 높은 수준의 동적 데이터 유형을 제공하고 동적 유형 검사를 지원합니다.
- 자동 가비지 수집을 지원합니다.
- C, C++, COM, ActiveX, CORBA, Java와 쉽게 통합할 수 있습니다.
_다운로드 및 설치 확인
Setting up Visual Studio Code
**
Setting up the VS Code, you follow these steps:**
First, navigate to the VS Code official website and download the VS code based on your platform (Windows, macOS, or Linux).
- launch the setup wizard and follow the steps.
- Once the installation completes, you can launch the VS code application:
- Install Python Extension
To make the VS Code works with Python, you need to install the Python extension from the Visual Studio Marketplace.
steps:
click the Extensions tab.
- type the python keyword on the search input.
- click the Python extension. It’ll show detailed information on the right pane.
Finally, click the Install button to install the Python extension.
Creating a new Python project
- Create a new folder called helloworld.
- Launch the VS code and open the helloworld folder.
- create a new app.py file and enter the following code and save the file:
- print('Hello, World!')
A function
When you sum two numbers, that’s a function. And when you multiply two numbers, that’s also a function.
Each function takes your inputs, applies some rules, and returns a result.
In the above example, the print() is a function. It accepts a string and shows it on the screen.
Python has many built-in functions like the print() function to use them out of the box in your program.
In addition, Python allows you to define your functions, which you’ll learn how to do it later.
*Executing the Python program on VS
*
pro.py 파일을 실행하려면 먼저 OS에서 명령 프롬프트를 실행합니다.
, helloworld 폴더로 이동합니다.
그런 다음 다음 명령을 입력하여 pro.py 파일을 실행합니다.
파이썬 프로.파이
코드 언어: 파이썬(python)
모든 것이 정상이면 화면에 다음 메시지가 표시됩니다.
안녕하세요, 월드입니다!
코드 언어: 파이썬(python)
VS 코드를 사용하는 경우 다음과 같이 VS 코드 내에서 터미널을 시작할 수도 있습니다.
Accessing the menu Terminal > New Terminal
Or using the keyboard shortcut Ctrl+Shift+`.
일반적으로 백틱 키(`)는 키보드의 Esc 키 아래에 있습니다.
파이썬 유휴
전체는 Python 통합 개발 환경(IDE)이며 기본적으로 Python 배포와 함께 제공됩니다.
Python IDLE은 대화형 인터프리터라고도 합니다. 다음과 같은 많은 기능이 있습니다.
Python IDLE을 사용하면 시행착오 방식으로 Python을 빠르게 실험할 수 있습니다.
Python IDE 실행 프로세스:
예를 들어, 코드 print('Hello, World!')를 입력하고 Enter 키를 누르면 Hello, World! 메시지가 표시됩니다. 화면에 즉시:
Python Hello World - 실행 코드
요약
Windows의 명령 프롬프트 또는 macOS 또는 Linux의 터미널에서 python pro.py 명령을 사용하여 app.py 파일을 실행합니다.
print() 함수를 사용하여 화면에 메시지를 표시합니다.
Python IDLE을 사용하여 Python 코드를 입력하고 즉시 실행합니다.
파이썬 기초
Reference
이 문제에 관하여(Python 프로그래밍에 대한 궁극적인 가이드), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lizaatis1/ultimate-guide-to-python-programming-i9i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)