name = '윤영채'
sentence = "안녕하세요 저는 {}".format(name)
multiline = """아 집에
가고 싶은데, 내일 광복절이라
참아야지
"""
print(multiline)
mbti = "infp"
print("당신의 mbti에서 직관유형은 ",mbti[1])
print("당신의 mbti에서 판단 또는 인식에서 당신은 ",mbti[3])
show = '입니다.'
print(mbti + show)
print(mbti[0:3])
print(mbti[:3])
mbti2 = "eisntfjp"
print(mbti2[:4])
print(mbti2[2:6])

mbti = "this is mbti"
print(mbti.upper())
mbti2 = "this is MBTI"
print(mbti2.swapcase())
mbti3 = " this is MBTI "
print(mbti3.strip())
print(mbti3.count("i"))
print(mbti3.replace("MBTI","헤헤"))
print(mbti3.replace("is","헤헤"))

print("출력 이\n스케이프 문!")
print("나는 \"너는...\"이라고 말했어")
print('나는 "너는..."이라고 말했어')
