
www.pythontutor.com/visualize.html
Preview meta tags from the www.pythontutor.com website.
Linked Hostnames
5- 5 links todocs.google.com
- 4 links topythontutor.com
- 2 links togoo.gl
- 1 link tostackoverflow.com
- 1 link tovalgrind.org
General Meta Tags
2- titlePython Tutor code visualizer: Visualize code in Python, JavaScript, C, C++, and Java
- Content-typetext/html; charset=UTF-8
Links
13- http://goo.gl/Q9xQ4p
- http://goo.gl/uNvBGl
- http://pythontutor.com/visualize.html#code=%23%20%5Bofficial%20Python%20Tutor%20example%5D%0A%0A%23%20use%20'%23pythontutor_hide'%20to%20pass%20in%20a%20glob%20expression%0A%23%20%28https%3A//docs.python.org/3/library/glob.html%29%20for%20what%0A%23%20variable%20names%20to%20hide.%20in%20this%20example,%20'*Type'%20means%20hide%0A%23%20all%20variables%20that%20end%20with%20'Type'.%20'y*'%20means%20anything%20starting%20with%20'y'%0A%0A%23%20use%20'%23pythontutor_hide_type'%20to%20pass%20in%20names%20of%20types%20of%20objects%0A%23%20to%20hide.%20in%20this%20example,%20we%20hide%20all%20classes,%20functions,%20and%20tuples%0A%0A%23%20if%20you%20remove%20these%20comments%20below,%20you%20will%20see%20how%20the%20visualization%0A%23%20is%20overly%20complicated.%20using%20these%20can%20drastically%20reduce%20the%20number%0A%23%20of%20visualized%20objects%20to%20a%20manageable%20amount.%0A%0A%23pythontutor_hide%3A%20*Type,%20y*%0A%23pythontutor_hide_type%3A%20class,%20function,%20tuple%0A%0A%0Afrom%20types%20import%20*%20%23%20lots%20of%20stuff%20in%20here%20should%20be%20hidden%0A%0Adef%20func1%28%29%3A%0A%20%20%20%20pass%0Adef%20func2%28%29%3A%0A%20%20%20%20pass%0A%0Ax%20%3D%20%281,2,3%29%0A%23%20all%20the%20y's%20should%20be%20hidden%0Ay%20%3D%20list%28x%29%0Ay2%20%3D%20y%0Ay3%20%3D%20y%0Az%20%3D%20y%20%23%20'z'%20should%20be%20the%20only%20object%20shown%20in%20the%20visualization%20%3A%29&cumulative=false&heapPrimitives=nevernest&mode=edit&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false
- http://pythontutor.com/visualize.html#code=%23%20%5Bofficial%20Python%20Tutor%20example%5D%0A%0A%23%20when%20the%20string%20%23break%20is%20the%20last%20thing%20on%20a%20line,%20then%20only%0A%23%20trace%20the%20execution%20of%20those%20lines.%20this%20can%20make%20it%20possible%20to%0A%23%20trace%20longer-running%20programs%20by%20stopping%20only%20at%20selected%20lines%0A%0A%23%20normally%20execution%20would%20halt%20after%201000%20steps,%20so%20you'd%20never%0A%23%20get%20to%20print%20everything%20...%20but%20if%20you%20put%20'%23break'%20on%20line%2012%0A%23%20then%20it%20will%20stop%20and%20print%20out%20all%20the%20desired%20numbers%0Afor%20i%20in%20range%2810000%29%3A%0A%20%20%20%20if%20i%20%3E%200%20and%20i%20%25%201000%20%3D%3D%200%3A%0A%20%20%20%20%20%20%20%20print%28i%29%20%23break&cumulative=false&heapPrimitives=nevernest&mode=edit&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false
- http://pythontutor.com/visualize.html#code=%23%20%5Bofficial%20Python%20Tutor%20example%5D%0Aw%20%3D%205%0Ax%20%3D%2010%0Ay%20%3D%2020%0Az%20%3D%2030%0A%0A%23%20bad%3A%20executes%20all%20at%20once%20since%20Python%20Tutor%20steps%20over%20the%20entire%20line%0Aresult%20%3D%20w%20-%20x%20*%20%28y%20%2B%20z%29%0A%0A%23%20good%3A%20break%20up%20an%20expression%20into%20its%20subexpressions%20to%20show%20individual%20steps%0At1%20%3D%20y%20%2B%20z%0At2%20%3D%20x%20*%20t1%0Aresult2%20%3D%20w%20-%20t2&cumulative=false&heapPrimitives=nevernest&mode=edit&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false