CAD & Block 자료

파이썬 걸음마 1 - 파이썬 설치와 간단한 Function 실행해보기

Chandleridle 2023. 10. 23.
반응형

파이썬 걸음마 1 - 파이썬 설치와 간단한 Function 실행해보기

 

파이썬 설치하기

 

  • 웹 브라우저를 통해 아래의 주소로 이동합니다. 




다운로드 탭을 통해 이동하면 많은 버전의 다운로드 링크를 확인할 수 있습니다.





  • Click more를 통해서 Release notes(버전별 내용)를 확인할 수 있습니다. 
  • 프로그램을 다운로드 한 후 실행해서 프로그램을 설치 합니다. 설치를 성공적으로 수행하면 윈도우 시작화면에 IDLE (Python 3.7 64-bit) 가 생성됨을 확인할 수 있습니다.






파이썬 Shell 



Copyright

명령창에 copyright 실행하면 저작권에 대한 내용이 출력됨을 확인할 수 있습니다.

Copyright (c) 2001-2018 Python Software Foundation.
All Rights Reserved.

Copyright (c) 2000 BeOpen.com.
All Rights Reserved.

Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All Rights Reserved.

Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.
All Rights Reserved.
>>> 


Credits

명령창에 Credits를 실행하면 아래와 같은 문구를 확인할 수 있습니다. 
 

Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands
    for supporting Python development.  See www.python.org for more information.

개발관련 인사 글이 출력됨을 확인할 수 있습니다.





License

명령창에 License()를 실행하면 아래와 같은 문구를 확인할 수 있습니다. 
 

A. HISTORY OF THE SOFTWARE
==========================

Python was created in the early 1990s by Guido van Rossum at Stichting
Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
as a successor of a language called ABC.  Guido remains Python's
principal author, although it includes many contributions from others.

In 1995, Guido continued his work on Python at the Corporation for
National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
in Reston, Virginia where he released several versions of the
software.

In May 2000, Guido and the Python core development team moved to
BeOpen.com to form the BeOpen PythonLabs team.  In October of the same
year, the PythonLabs team moved to Digital Creations, which became
Zope Corporation.  In 2001, the Python Software Foundation (PSF, see
https://www.python.org/psf/) was formed, a non-profit organization
created specifically to own Python-related Intellectual Property.
Zope Corporation was a sponsoring member of the PSF.

All Python releases are Open Source (see http://www.opensource.org for
the Open Source Definition).  Historically, most, but not all, Python
Hit Return for more, or q (and Return) to quit: 

1990년대 초 Guido van rossume이 Stichiting 에서 만들어졌으며 1995년 버지니아 주 Reston 에서 여러 버전의 소프트 웨어로 개발을 지속해 나갔습니다. 2000년 5월에 파이톤랩팀을 구성해서 같은 해 10월 Digital Creations 로 이전 한 후 2001년에 비영리 재단을 설립하였습니다. 파이썬은 오픈 소스 입니다. (오픈소스 무상으로 공개하여 누구나 그 소프트웨어를 개량하고 재배포 할 수 있는 소프트웨어를 말합니다.)


파이썬의 업데이트 정보 확인하기

파이썬은 지속적으로 발전과 진화를 하고 있습니다. 따라서 https://www.python.org/ 를 통해서 Release 되는 사항들을 확인하고 필요에 따라 프로그램을 업데이트를 유지해야 함을 기억해야 합니다. 
 

파이썬의 업데이트 정보 확인하기

Built-in Functions (https://docs.python.org/3/library/functions.html#delattr) 중 print()를 사용해서 원하는 텍스트를 출력해 보겠습니다. 


  • 명령창에 print("Hello guys, I am Korean") 을 입력한 후 엔터로 명령 실행



아래와 같이 Hello guys, I am Korean이 출력되는 것을 확인할 수 있습니다. 

Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 27 2018, 04:59:51) [MSC v.1914 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> print("Hello guys, I am Korean")
Hello guys, I am Korean

파이썬 설치 방법 (동영상)



파이썬 첫 번째 발걸음 이었습니다.


반응형

댓글