grok
Grok Learning - 'Halve This'
I am having trouble solving the 'Halve This' problem on Grok Learning. My code so far is: x = int(input('Number: ') f = float(x) h = (f/2) print(h) But Grok is saying that the "f = float(x)" is incorrect. This message appears when I try to run the code: File "program.py", line 2 f = float(x) ^ SyntaxError: invalid syntax Can someone please tell me what is wrong or at best tell me the entire solution. This would be highly appreciated.
As #David Young said, try adding parenthesis on the first line. x = int(input('Number: ')) f = float(x) h = (f/2) print(h) you can also solve this without converting to float. x = int(input('Number: ')) h = (f/2) print(h)
Related Links
Grok Learning - 'Halve This'
logstash grok patterns assistance
Using multiple grok pattern to assign value to 1 field
Graylog cannot look a field as numeric
Logstatsh help needed to write grok filter
How to have timestamp as the only delimiter in Grok Logstach?
Error compiling Grok
logstash grok filter annoyance