I'm guessing 8? But I'm not 100% positive
Answer:
B. emotional
Explanation:
An emotional argument. An argument does not always have to be made in words.
```
#!/usr/local/bin/python3
foo = float( input( "Enter a number: " ) )
if( foo < 0.0 ):
print( "negative" )
elif( foo > 0.0 ):
print( "positive" )
else
print( "zero" )
exit( 0 )
```