2017-05-23 8 views
-3

私は、とValueError:float型に文字列を変換できませんでした:これをやっている間、しきい値

python signal_arduino_relax.py -t threshold 
Setting threshold to threshold 

を以下のコマンドで問題が生じています、私は下記のエラーを得た:

Traceback (most recent call last): 
    File "signal_arduino_relax.py", line 122, in <module> 
    threshold = float(sys.argv[2]) 
ValueError: could not convert string to float: threshold 

どのようにできましたこの問題を解決します?

+0

'-t'の引数に実際のしきい値を入れてみてください:' -t 1.0' –

+1

'sys.argv [2]'を実際の数値にするのはどうですか? –

答えて

1

threshold is a float between 0 and 1 defining the level of relaxtion needed to move the car

はそのままコマンドをコピーしないでください...それは正しい文書を発見したと仮定。命令ごとに実際の数値を与えてください

+0

ありがとうございます。 Jean-Françoisとcricket_007。 –

+0

@EmreZenginあなたは今この答えを受け入れることができます:) –

関連する問題