Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLayla Baudanza
6,178 PointsDifficulty with multiplying in python
Hello, I am having some difficulty figuring out what formula would be correct for multiplying in python. If I am not wrong, I believed the formula was simply what was used in the last video.... @app.route('/add/<int:num1>/<int:num2>') @app.route('/add/<float:num1>/<float:num2>') @app.route('/add/<int:num1>/<float:num2>') @app.route('/add/<float:num1>/<int:num2>') def add(num1, num2): return '{} + {} = {}' .format(num1, num2, num1+num2)
But replacing "add" and "+" with "multiply" and "*", and replacing "num1" and "num2" with "5". I attempted this and received an error= Syntax message, and would like to know what I am doing wrong. Thank you in advance!