Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 3 years have passed since last update.

言語処理100本ノック2020(Rev1)をやってみました。

Last updated at Posted at 2020-08-10

第1章: 準備運動

ここでは、Google Colaboratoryを使用しています。

0. 文字列の逆順

文字列”stressed”の文字を逆に(末尾から先頭に向かって)並べた文字列を得よ.

str1="stressed"
print(str1[::-1])

<出力>

desserts

1.「パタトクカシーー」

「パタトクカシーー」という文字列の1,3,5,7文字目を取り出して連結した文字列を得よ.

str1="パタトクカシーー"
print(str1[0::2])

<出力>

パトカー

2.「パトカー」+「タクシー」=「パタトクカシーー」

「パトカー」+「タクシー」の文字を先頭から交互に連結して文字列「パタトクカシーー」を得よ.

str1="パトカー"
str2="タクシー"
w=""
for i in range(len(str1)):
  w+=str1[i]
  w+=str2[i]
print(w)

<出力>

パタトクカシーー

3. 円周率

“Now I need a drink, alcoholic of course, after the heavy lectures involving quantum mechanics.”という文を単語に分解し,各単語の(アルファベットの)文字数を先頭から出現順に並べたリストを作成せよ.

str1="Now I need a drink, alcoholic of course, after the heavy lectures involving quantum mechanics."
str1.replace(",","").replace(".","")   # 記号を除去する
print(sorted([[len(w), w] for w in str1.split()]))

<出力>

[[1, 'I'], [1, 'a'], [2, 'of'], [3, 'Now'], [3, 'the'], [4, 'need'], [5, 'after'], [5, 'heavy'], [6, 'drink,'], [7, 'course,'], [7, 'quantum'], [8, 'lectures'], [9, 'alcoholic'], [9, 'involving'], [10, 'mechanics.']]

4. 元素記号

“Hi He Lied Because Boron Could Not Oxidize Fluorine. New Nations Might Also Sign Peace Security Clause. Arthur King Can.”という文を単語に分解し,1, 5, 6, 7, 8, 9, 15, 16, 19番目の単語は先頭の1文字,それ以外の単語は先頭の2文字を取り出し,取り出した文字列から単語の位置(先頭から何番目の単語か)への連想配列(辞書型もしくはマップ型)を作成せよ.

str1="Hi He Lied Because Boron Could Not Oxidize Fluorine. New Nations Might Also Sign Peace Security Clause. Arthur King Can."
dim=str1.replace(".","").replace(",","").split()

w={}
idx=[1, 5, 6, 7, 8, 9, 15, 16, 19]
for i in range(len(dim)):
  if (i+1) in idx:
    w[dim[i][0]] = i+1
  else:
    w[dim[i][:2]] = i+1
print(w)

<出力>

{'H': 1, 'He': 2, 'Li': 3, 'Be': 4, 'B': 5, 'C': 6, 'N': 7, 'O': 8, 'F': 9, 'Ne': 10, 'Na': 11, 'Mi': 12, 'Al': 13, 'Si': 14, 'P': 15, 'S': 16, 'Cl': 17, 'Ar': 18, 'K': 19, 'Ca': 20}

5. n-gram

与えられたシーケンス(文字列やリストなど)からn-gramを作る関数を作成せよ.この関数を用い,”I am an NLPer”という文から単語bi-gram,文字bi-gramを得よ.

def n_gram(str1, n):
  ret=[]
  for i in range(len(str1)-n+1):
    ret.append(str1[i:i+n])
  return ret

str1="I am an NLPer"

# 文字bi-gram
print(n_gram(str1, 2))

# 単語bi-gram
word=str1.split()
print(n_gram(word, 2))

<出力>

['I ', ' a', 'am', 'm ', ' a', 'an', 'n ', ' N', 'NL', 'LP', 'Pe', 'er']
[['I', 'am'], ['am', 'an'], ['an', 'NLPer']]

6. 集合

“paraparaparadise”と”paragraph”に含まれる文字bi-gramの集合を,それぞれ, XとYとして求め,XとYの和集合,積集合,差集合を求めよ.さらに,’se’というbi-gramがXおよびYに含まれるかどうかを調べよ.

def n_gram(str1, n):
  ret=[]
  for i in range(len(str1)-n+1):
    ret.append(str1[i:i+n])
  return ret

str1="paraparaparadise"
str2="paragraph"

x=set(n_gram(str1, 2)) # Xのbi-gramを重複なく取得
y=set(n_gram(str2, 2)) # Yのbi-gramを重複なく取得

print("x = ",x)
print("y = ", y)

#和集合
print("和集合:{}".format(x | y))

#積集合
print("積集合:{}".format(x & y))

#差集合
print("差集合:{}".format(x - y))

print("'se' in x:{}".format("se" in x))
print("'se' in y:{}".format("se" in y))

<出力>

x =  {'ap', 'ar', 'se', 'di', 'pa', 'ad', 'is', 'ra'}
y =  {'ap', 'ag', 'ar', 'gr', 'ph', 'pa', 'ra'}
和集合{'ap', 'ag', 'ar', 'gr', 'se', 'di', 'pa', 'ph', 'ad', 'is', 'ra'}
積集合{'ap', 'ra', 'pa', 'ar'}
差集合{'is', 'se', 'ad', 'di'}
'se' in x:True
'se' in y:False

7. テンプレートによる文生成

引数x, y, zを受け取り「x時のyはz」という文字列を返す関数を実装せよ.さらに,x=12, y=”気温”, z=22.4として,実行結果を確認せよ.

def FormatTime(x,y,z):
  return "{0}時の{1}は{2}".format(x,y,z)

x=12
y="気温"
z=22.4
print(FormatTime(x,y,z))

<出力>

12時の気温は22.4

8. 暗号文

与えられた文字列の各文字を,以下の仕様で変換する関数cipherを実装せよ.

英小文字ならば(219 - 文字コード)の文字に置換
その他の文字はそのまま出力
この関数を用い,英語のメッセージを暗号化・復号化せよ.

def cipher(str1):
  ret=""
  for i in range(len(str1)):
    w=str1[i]
    if w.islower() :
      w=chr(219-ord(w)) # ord関数で文字コードを取得し、chr関数で文字コードを文字に変換
    ret+=w
  return ret

test="I have a pen."
print(test)
test=cipher(test)
print(test)
test=cipher(test)
print(test)

<出力>

I have a pen.
I szev z kvm.
I have a pen.

9.Typoglycemia

スペースで区切られた単語列に対して,各単語の先頭と末尾の文字は残し,それ以外の文字の順序をランダムに並び替えるプログラムを作成せよ.ただし,長さが4以下の単語は並び替えないこととする.適当な英語の文(例えば”I couldn’t believe that I could actually understand what I was reading : the phenomenal power of the human mind .”)を与え,その実行結果を確認せよ.

import random as rand

def Typoglycemia(str1):
  words=str1.split()
  ret=[]
  for w in words:
    if len(w) > 4:  # 単語長が4より大きいときは先頭・末尾以外をランダムにソート
      str2=w[0]
      w2=list(w[1:-1])
      rand.shuffle(w2)
      str2+=''.join(w2)
      str2+=w[-1]
    else:           # 単語長4以下のときはそのまま返す
      str2=w
    ret.append(str2)
  return ' '.join(ret)

print("I couldn’t believe that I could actually understand what I was reading : the phenomenal power of the human mind .")
print(Typoglycemia("I couldn’t believe that I could actually understand what I was reading : the phenomenal power of the human mind ."))

<出力>

I couldn’t believe that I could actually understand what I was reading : the phenomenal power of the human mind .
I cluod’nt blvieee that I cluod atuclaly utnrnasded what I was ridaeng : the pnhanmeoel power of the hamun mind .
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?