Replacing part of the string using regular expressions
See the following solution:
import re
regexp_test = re.compile('\/\d')
result = regexp_test.sub(lambda x: '/'+str(int(x.group()[1])+2), file_content)
It will increment each digit after slash ("/") by 2, so "/2" will be replaced with "/4" and so on...
The result will give you:
>>> print result
http://lincoln.com/picture/4453345/flower.jpg
http://lincoln.com/picture/4354345/flower1.jpg
if file_content is defined as below:
>>> file_content = '''http://lincoln.com/picture/2453345/flower.jpg
http://lincoln.com/picture/2354345/flower1.jpg'''
Using content of the file as a string
As @jsalonen correctly noticed, there is another problem with your script: it uses file directly as it would be a string. You should first read its contents:
file_content = open('fileinput','r').read()
and then work on file_content variable, which is string and contains the whole content of the file you have read.