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 trial

Python Regular Expressions in Python Introduction to Regular Expressions Escapes

Manuel Oviedo
Manuel Oviedo
2,223 Points

"Write a function named first_number that takes a string as an argument" what do you mean string as an argument?

i do I like this

def first_number(string_1): return string_1

but I could not get it right, what I am doing wrong?

escapes.py
import re

1 Answer

David Mclean
David Mclean
3,646 Points
const greeting = "Welcome to Next Gen Universe";

function printWelcome(stringArgument){
      console.log(stringArgument);
}

printWelcome(greeting);

stringArgument in this is a argument parameter, of course it's hardly likely to name it this but just so you understand what's going on. Try out this code if you don't see it.

Manuel Oviedo
Manuel Oviedo
2,223 Points

Thank you very much David, I completed my task thanks to you.