Computer Science

Find the errors(s)

print ("Hello"/2) 
print ("Hello" / 2)

Python Data Handling

9 Likes

Answer

Both the lines of this Python code will give an error as strings cannot be used with division operator (/).

Answered By

7 Likes


Related Questions