Why is it not outputting 'b' ever?
You're assuming that the tags returned from findAll are dicts, when in fact they're not. The BeautifulSoup library that you're using has its own custom classes, in this case BeautifulSoup.Tag, which may work a lot like a dict, but isn't.
Here, check this out:
>>> doc = ['<html><head><title>Page title</title></head>',
... '<body><p id="firstpara" align="center">This is paragraph <b>one</b>.',
... '<p id="secondpara" align="blah">This is paragraph <b>two</b>.',
... '</html>']
>>> soup = BeautifulSoup(''.join(doc))
>>> tag = soup.findAll("p")[0]
>>> type(tag)
class 'BeautifulSoup.Tag'>
>>> isinstance(tag, dict)
False
Since it's not actually a dict, you're getting some different (domain-specific) behavior, in this case a list of immediate children (tags immediately contained within the tag you're "indexing").
It looks like you want to know if the input tag has an attribute type, so according to the BeautifulSoup documentation you can list the attributes of a tag using tag.attrs and attrMap.
>>> tag.attrs
[(u'id', u'firstpara'), (u'align', u'center')]
>>> tag.attrMap
{u'align': u'center', u'id': u'firstpara'}
>>> 'id' in tag.attrMap
True
BeautifulSoup is a really helpful library, but it's one that you have to play with a bit to get the results you want. Make sure to spend time in the interactive console playing with the classes, and remember to use the help(someobject) syntax to see what you're playing with and what methods it has.