Skip to content
Snippets Groups Projects
Commit ed842219 authored by KimTaeeun's avatar KimTaeeun
Browse files

Upload New File

parent d8110634
No related branches found
No related tags found
No related merge requests found
a = """a
b
c"""
print(a)
print('Taeeun' in a)
b = 'I am Taeeun'
print('Taeeun' in b)
print('taeeun' in b)
c = 'Taeeun' in b
print(type(c))
d="\\n\\n\\n\\n"
print(d)
print(len(d))
# NOT 12, \n 가 한개!
e = 'llollooll'
print(e.find('ll'))
print(e.find('ll',1,7))
f = input()
print(f)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment