what will be the output of the following?
print(len ( str (17//4) ) )
print(len ( str(17/4) ) )
Answers
Answered by
1
Answer:
4
1
Explanation:
when we will do it practically in python IDLE or in spyder it will show this answer
>>>print(17//4)
4
>>>print(len(str(17//4)))
1
thank u
this answer is 200% correct
because i am a student of computer science
and I did the practical on my own and then posting the answer.
Similar questions