I’m getting syntax errors, can anyone tell me what I am doing wrong
JavaScript
x
5
1
sentence = "Especially in electronic communications, writing in all caps is equivalent to yelling."
2
3
result = sentence.upper()
4
print =(result)
5
Advertisement
Answer
hey hi you have used “=” sign after print statement that’s why its showing there’s an error. Don’t use the “=” sign.. just use “print(result)”