So, quick question, (has to be just something I'm missing), if I want to concantate a string and integers in a url, is there a way to do so? I'm sure there is...I mean this IS python!
from urllib2 import urlopen
width = input("Please enter a width specification here: ")
height = input("Please enter a height specification here: ")
url = "http://www.placekitten.com/" + width + "/" + height
kitten = urlopen(url).read()
kitten_file = open('/Users/SirPrinceKai/Desktop/adorable_kitten.jpg', 'w')
kitten_file.write(kitten)
kitten_file.close()