what will be the output of the python code.
a = len('sookshmas beyondknowing')
b = int(a)
if b%2==0:
   print('Two is the factor')
  elif b%3==0:
   print('Three is the factor')
elif b%7==0:
   print('Seven is the factor')
elif b%5==0:
   print('Five is the factor')
else:
   print('It may be prime')

Posted on by