자료형
숫자형 (int, float, complex)
문자열 (str)
리스트 (list)
튜플 (tuple)
집합 (set)
사전 (dictionary)
숫자형
# 두 숫자를 더한 결과 출력
num1 = 10
num2 = 20
result = num1 + num2
print("두 숫자의 합:", result)
문자열
# 문자열 합치기
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result)
리스트
# 리스트 순회하며 합계 계산
numbers = [1, 2, 3, 4, 5]
total = 0
for num in numbers:
total += num
print("리스트의 합계:", total)
튜플
# 튜플 순회하며 값 출력
tup = (1, 2, 3, 4, 5)
for value in tup:
print(value)
집합
# 집합 연산
set1 = {1, 2, 3, 4, 5}
set2 = {4, 5, 6, 7, 8}
# 교집합
intersection = set1 & set2
print("교집합:", intersection)
# 합집합
union = set1 | set2
print("합집합:", union)
사전
# 사전을 활용한 간단한 예시
student_scores = {"John": 90, "Alice": 85, "Bob": 88}
# 특정 학생의 점수 출력
print("John의 점수:", student_scores["John"])
# 모든 학생의 점수 출력
for name, score in student_scores.items():
print(name, ":", score)
728x90
반응형
'Language > Python' 카테고리의 다른 글
python while (0) | 2024.05.04 |
---|---|
python for문 (0) | 2024.05.04 |
python camel을 snake case로 변경 (0) | 2024.05.04 |
python 모든 에러 예외 처리 방법 (0) | 2024.05.04 |
python 리스트를 딕셔너리로 변환하기 (0) | 2024.04.23 |