• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:google app engine のpythonでの文字列操作につい)

Google App EngineのPythonでの文字列操作について

このQ&Aのポイント
  • Google App EngineのPythonでの文字列操作について教えてください。
  • Google App EngineでPythonを使い開発している際に、文字列操作に関してエラーが発生しています。
  • Google App Engineではstring.findメソッドは使用できないため、他の文字列操作のモジュールを使用する必要があります。

質問者が選んだベストアンサー

  • ベストアンサー
  • sakusaker7
  • ベストアンサー率62% (800/1280)
回答No.1

>普通のpythonなら可能だとは思うのですが、 試してみましたか? 「普通のPython」でも同じ結果になると思いますよ。 >python Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> type(str) <type 'type'> >>> s = "fii" >>> type(s) <type 'str'> >>> str = "foo" >>> type(str) <type 'str'> >>> strという名前の変数を使ってはいけません。

関連するQ&A