How can I record the print values? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

How can I record the print values?

I want to record the values of this line "print(indicator)". So I would be able to get the max value and print the biggest word of the input. Look at this code below: txt = input() txt_list = list(txt) indicator = 0 for c in txt_list: indicator += 1 if c == " " or c == ",": indicator -= 1 print(indicator) #big_word = max(record) indicator = 0 :D https://code.sololearn.com/cxBWLMvBt2eg/?ref=app

7th Mar 2022, 5:32 PM
Paulo
Paulo - avatar
0 Réponse