Link Search Menu Expand Document

Feedback a survey

The author wants to know what you think of Python Crash Course!

The author uses the survey results to refine what’s offered in the book, and in these online resources. Your feedback will also help the author decide what to focus on in his next Python book.

function pageY(elem) { return elem.offsetParent ? (elem.offsetTop + pageY(elem.offsetParent)) : elem.offsetTop; }

function resizeIframe() { var height = document.documentElement.clientHeight; height -= pageY(document.iframe) + buffer ; height = (height < 0) ? 0 : height; iframe.style.height = height + ‘px’; }

// .onload doesn’t work with IE8 and older. if (iframe.attachEvent) { iframe.attachEvent(“onload”, resizeIframe); } else { iframe.onload=resizeIframe; }

window.onresize = resizeIframe; </script>