Q. Write the output of the following code
Code:
s1="csiplearninghub.com"
c=0
for x in s1:
if(x!="l"):
c=c+1
print(c)
β
Correct Answer: (D)
18
s1="csiplearninghub.com"
c=0
for x in s1:
if(x!="l"):
c=c+1
print(c)
You must be Logged in to update hint/solution