Saved Bookmarks
| 1. |
Find and write the output of the following python code: = "abcdef"i = "a"while i in x:print(i, end = " ") |
|
Answer» aaaaaa----- OR infinite loop |
|