Saved Bookmarks
| 1. |
Find the errors from the following code: T=[a,b,c] print T |
|
Answer» NameError: name ‘a’ is not defined. T=[‘a’,‘b’,‘c’] |
|