일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
- python
- Tutorial
- DP
- UE5
- 파이썬
- 시작해요 언리얼 2022
- github
- guide
- 재귀
- Unity
- W3Schools
- dynamic
- C#
- 기초
- 오류
- 백준
- Unreal Engine 5
- Basic
- loop
- dfs
- Programming
- Material
- parameter
- c++
- w3school
- Algorithm
- String
- 프로그래밍
- Class
- 문제풀이
- Today
- Total
목록Python (27)
행복한 개구리

W3Schools의 Python Tutorial을 보며 해석하고 정리한 글입니다. 오역이 존재할 수 있습니다 저도 파이썬은 처음이니 가볍게 봐주세요 :D W3Schools 파이썬의 데이터 타입들 빌트인(미리 설정되어있는, Built - in) 데이터 타입들 프로그래밍에 있어서 데이터 타입은 중요한 개념이다. 변수들은 다른 타입의 데이터를 저장할 수 있으며 서로 다른 타입들은 서로 다른 것들을 수행할 수 있다. 파이썬은 기본적인 빌트인 데이터 타입들을 따르며 그것들은 다음과 같다. 텍스트 타입: str 숫자 타입 : int , float , complex 열거, 나열 타입 : list , tuple , range 매핑 타입 : dict 세트 타입 : set , frozenset 불린(참/거짓) 타입 : b..

W3Schools의 Python Tutorial을 보며 해석하고 정리한 글입니다. 오역이 존재할 수 있습니다 저도 파이썬은 처음이니 가볍게 봐주세요 :D W3Schools x = "awesome" def myfunc(): global x x = "fantastic" myfunc() print("Python is " + x) x = "awesome" def myfunc(): x = "fantastic" print("Python is " + x) myfunc() print("Python is " + x) 지난번에 주석은 #을 이용하여 달 수 있다고 학습했다. 그렇다면 여러줄을 주석처리할 땐 어떻게 해야 할까? 여러줄 주석처리 """ This is a comment written in more than ju..

나는 파이썬을 이미 설치했기 때문에 따로 설치방법을 올리진 않겠다. https://www.w3schools.com/python/python_intro.asp Introduction to Python Python Introduction What is Python? Python is a popular programming language. It was created by Guido van Rossum, and released in 1991. It is used for: web development (server-side), software development, mathematics, system scripting. What can Python do? www.w3schools.com 같이 팀프로젝트를 하는 ..