- 4
Solving longest word in pyrhon
How to soove longest word in python
3 Respuestas
0
But with your attempt....
0
The longest word:
word = "z"
while true:
word += "z"
print(word)
But you need a very fast processor and ram and the other things
0
finding the longest word among many words suppose to get the words as list and compare their length: the one with max length is the longest ^^