2
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 5 years have passed since last update.

AWS Lambda(Python)の環境変数で改行を入れる

Posted at

AWS Lambda(Python)の環境変数の値に改行を入れたい場合、
環境変数を取り出したあとに改行の文字を改行コードに変換すれば上手くいきます。

サンプル

clickType_doubleという環境変数の値に\nという文字を入れます。
スクリーンショット 2018-11-25 19.08.11.png
pythonのコード
\\nを\nに変換するようにします。
スクリーンショット 2018-11-25 19.15.26.png
結果
(Twitterにつぶやくというサンプルですが・・・)
スクリーンショット 2018-11-25 19.09.52.png
意外とハマったので備忘録として残しておきます。

2
1
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
2
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?