0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

データフレームに格納された複数行テキストの最大文字数を調べる

Last updated at Posted at 2020-06-24

メモ

スクリーンショット 2020-06-24 15.21.31.png
mojisuu = []
for i in range(len(input_data)):
    mojisuu.append(len(input_data.iloc[i,0]))
print(max(mojisuu))
#最大文字数の文章は122文字
0
1
3

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?