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