현대 파이썬 소개
소개
당신은 아마도 그 이유를 알고 있으며 현재 언어에 대해 어떻게 해야 하는지에 대한 Zen의 조언을 인터넷에서 찾고 있습니다. 음, 여기도 마찬가지입니다.
우리는 절대적인 기본 사항에 대해 논의하고 언어 학습에 도움이 될 몇 가지 리소스(및 치트 시트)를 링크할 것입니다. 나는 원시 데이터 유형, 수학 피연산자 및 내장 데이터 구조에 대해 논의할 것입니다.
데이터 유형
1. 문자열
Concatenation, Replication, Slicing 및 기타 다양한 방법(문자를 통한 상위, 하위 변환 및 교체 또는 반복)
x = 'Python'
y = 'Developer'
#string Concatenation
x + y # returns PythonDeveloper
#string Replication
x * 3 # returns PythonPythonPython
len(x) # length of string -- in this case 6
x[0] #returns first letter - p
x[-1]#returns the last letter - n
x[0:3]#returns characters from within the specified range -- pyt
name = f 'I am a {x }{y}' # returns I am a python developer
x.upper() #converts to uppercase PYTHON
x.lower() #converts to uppercase python
x.title() #converts to titlecase Python
x.strip() #removes first and last character and returns the string
x.find(“p”) #finds index of passed character within the string
x.replace(“a”, “b”) #replaces the first passed character with the second one
“a” in x #find character within the string
2. 숫자 - 이 값은 정수, 부동 소수점 또는 복소수가 될 수 있습니다.
3. Boolean - True 또는 False입니다. 주로 비교 연산 및 조건문에 사용할 수 있습니다.
4. 특별 - 없음
a = 1 # integer
b = 1.1 # float
c = 1 + 2j # complex number (a + bi)
d = “a” # string
e = True # boolean (True / False)
b = () #an empty list evaluates to None
수학 피연산자
(*) ()(/)(//)(%) (+)(-) 순서로.
2 ** 3 #returns the exponent = 8
2 * 3 # returns 6
12 / 2 #returns 4
24 // 5 #returns 4
24 % 5 #returns the remainder that is 4
28 + 3 #returns 31
28 - 3 #returns 25
데이터 구조
1. 목록
list1 = ['potatoes',59, 8.5, 'sugar']
list2 = list(('potatoes',59, 8.5, 'sugar'))
2. 튜플
tuple1 = ('potatoes',59, 8.5, 'sugar')
len(tuple1) # returns 4 that is the number of items in the tuple
del tuple1 # to delete the entire tuple
튜플과 목록의 차이점 - 2020 - 다른 사람
3. 사전
my_dict = {3: 'd', 2: 'c', 1: 'b', 0: 'a'}
my_dict[0] # returns the first item in the dictionary
4. 세트
my_set = {5, 4, 6, 7}
변수와 상수
변수는 항목을 참조하는 역할을 하는 자리 표시자입니다. CONSTANTS는 한 번 선언된 값은 그대로 유지되며 프로그램 범위 내에서 변경할 수 없습니다.
변수 이름 지정을 관리하는 규칙.
CONSTANTS는 일반적으로 대문자로 선언됩니다.
코멘트
파이썬 주석 앞에는 #이 붙습니다. 여러 줄의 경우 주석을 달기 위한 약식 명령을 배울 수 있습니다. VSCode에서 Ctrl + K + C.
#this is a CONSTANT
CONSTANT = 5
#this are variables
myName = 'Developer X'
my_age = 15
초보자용 치트시트
Reference
이 문제에 관하여(현대 파이썬 소개), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/cheruto/introduction-to-modern-python-1kog텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)