Q2. Find the errors in the following command.
1. >>>print(20+30]
2. >>>print "hello"
3.>>>True=1
4. >>>
a = 10
Answers
Answered by
2
Corrected Command:
1. >>>print(20+30)
2. >>>print ("hello")
3.>>>true=1
4. >>>a = 10
Similar questions