Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

JeongHyun Kim
697 Pointsposition argument
I can't understand what is position argument. And, I don't know why it doesn't work.;(
import re
first_number = re.search("r.\d")
1 Answer

Chris Freeman
Treehouse Moderator 68,154 PointsThe challenge asks you to create a function called first_number
. You’ve created a named variable instead.
The error Bummer: TypeError: search() missing 1 required positional argument: 'string'
refers to the search
method that takes two arguments, the pattern and a string to apply the pattern to.
Your function will take one argument. This argument will be the string to use in the search
call.
Also, in the pattern, the r should prefix the string, and not be inside the string.
Post back if you need more help. Good luck!!!
JeongHyun Kim
697 PointsJeongHyun Kim
697 PointsThank you for your kind apply!