# -*- coding: utf-8 -*-
"""
Created on Tue Sep 29 11:12:55 2020

@author: Sim
"""
# strtest2.py 
mystr1 = 'Hello. This is my string'
mystr2 = '안녕하세요? 내 문자열입니다'

print(mystr1 + " 는 한글로 " + mystr2 + " 이다.")
print("\"" + mystr1 + "\" 는 한글로 " + "\"" + mystr2 + "\" 이다.")

print(mystr1 * 3)

if 'He' in mystr1:
    print('By first if: ' + mystr1)
else:
    print('By first if: ' + mystr2)
    
    
if '안녕' in mystr2:
    print('By second if: ' + mystr2)
else:
    print('By second if: ' + mystr1)
    

print("여기 줄 \n 빠꿉니다. \n \\로 backslash가 표현됩니다")
print("여기\t요기\t조기\t저기에 \'Tab\'\bAA")
print("\x22, \x11 ")
