Saved Bookmarks
| 1. |
What is the following code : x = 5 y = \'a\' print (y* a) |
|
Answer» a string can not be multiplied \'a\' is a string No its error in your program if you take x*y then is thisoutput Output:a a a a a |
|