Use raw input to read int value : Standard Read : Development PYTHON examples


PYTHON examples » Development » Standard Read »

 

Use raw input to read int value




import sys, string
sum = 0
while 1:
    try:
        line = raw_input()                
    except EOFError:                      
        break
    else:
        sum = sum + string.atoi(line)     int(line[:-1]) treats 042 as octal
print sum

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Development
» Standard Read


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0