print("hello")
print('hello')
hello
print("hello 'bye'")
print('hello "bye"')
hello 'bye'
hello "bye"
print('hello', 'good', 'bye')
hello good bye
print('hello'+'good'+'bye')
hellogoodbye
print("""안녕하세요
오늘은 날씨가 좋네요""")
안녕하세요
오늘은 날씨가 좋네요
print('''안녕하세요
오늘은 날씨가 좋네요''')
안녕하세요
오늘은 날씨가 좋네요
print("안녕하세요" \
"오늘은 날씨가 좋네요")
안녕하세요오늘은 날씨가 좋네요
a = 123
b = "hello"
print("a:{} b:{}" .format(a,b))
a:123 b:hello
a = 123
b = "hello"
print(f"a:{a} b:{b}")
a:123 b:hello
input()
>>hello
'hello'
input()
>>123
'123'
input("값을 입력하여 주세요: ")
>>hello
'hello'
a = input("첫번째 문자열 입력:")
b = input("두번째 문자열 입력:")
print(a+b)
100200
a = 10
b = '20'
c = 10
d = '10'
print( c + int(d) )
20
c = 10
d = '10'
print( str(c) + d )
2010
e = 3.14
a = 10
b = 10
c = float(a) + float(b)
print(c)
20
참: True
거짓: False
a_bool = True
b_bool = False
print(a_bool)
print(b_bool)
True
False
여러 개의 데이터를 하나의 변수로 묶어 표현할 수 있는 자료형
a_list = [1, 3.14, 'hello', [1, 2, 3]]
print(a_list[0])
print(a_list[:2])
print(a_list[1:3])
a_list.append(2)
print(a_list)
1
[1, 3.14]
[3.14, 'hello']
[1, 3.14, 'hello', [1, 2, 3], 2]