1. ホーム
  2. python

[解決済み] false」を0に、「true」を1に変換するには?

2022-04-26 14:21:27

質問

を変換する方法はありますか? true タイプの unicode を1にして false タイプの unicode を0にする(Pythonの場合)?

例えば、こんな感じです。 x == 'true' and type(x) == unicode

欲しい x = 1

追記:私は if - else .

どのように解決するのか?

使用方法 int() をブーリアン検定にかける。

x = int(x == 'true')

int() は、ブーリアン値を 1 または 0 . なお、任意の値 ノット 同様 'true' になる。 0 が返される。