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

Jasmin Mattiaccio
PLUS
Jasmin Mattiaccio
Courses Plus Student 3,131 Points

input("> ") Still dont understand what this does :(

Can anybody please provide a clear explanation of what this does: input ("> ") i dont understand what "> " does to the code...

any answers would be greatly appreciated :)

2 Answers

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Jasmin! It's actually nothing all that fancy. When the console asks the user for input, the string is what will be displayed right before the blinking cursor. In this case, simply a "> ". But we could have something like input("How are you today, Jasmin? "). Which would then print that to the console and await a response.

Hope this helps! :sparkles:

Jasmin Mattiaccio
PLUS
Jasmin Mattiaccio
Courses Plus Student 3,131 Points

oops, i feel .silly! Appreciate the quick response Thanks Jennifer!