From ed8422196e0f31bcc3937fb84686f4be68a307f7 Mon Sep 17 00:00:00 2001 From: KimTaeeun <teun1215@ajou.ac.kr> Date: Tue, 13 Nov 2018 16:43:43 +0900 Subject: [PATCH] Upload New File --- "\354\260\275\354\206\214\354\236\2053.py" | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 "\354\260\275\354\206\214\354\236\2053.py" diff --git "a/\354\260\275\354\206\214\354\236\2053.py" "b/\354\260\275\354\206\214\354\236\2053.py" new file mode 100644 index 0000000..784bac2 --- /dev/null +++ "b/\354\260\275\354\206\214\354\236\2053.py" @@ -0,0 +1,25 @@ +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) -- GitLab