Q25Single correct3 Marks3 Sep 2023
What will be the output of the following Python code?
```
string1 = 'welcome'
string2 = 'hi hello'
L = []
for i in range(0, len(string1)):
for j in range(0, len(string2)):
if string1[i] == string2[j]:
L.append(string1[i])
break
else:
continue
print(L)
```