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 Python Basics Types and Branching Booleans

Can anyone remind me what actions allow you to repeat the last string you use with out typing it out again?

What's the shortcut ot repeating a string without retyping it?

Maybe you can create a function and store the string there? Then you can just call it and it will return the string for you. :)

-Cheers, Daniel.

boi
boi
14,241 Points

Do you mean the use of the "up" arrow key? the "up" arrow key stores the last thing you typed.

1 Answer

Steven Parker
Steven Parker
229,657 Points

I think you might be talking about how Python automatically stores the value of the last expression in the interpreter (which may or may not be a string) to a particular variable named "_" (underscore).

Or perhaps you mean the up-arrow key which will back-step through the command history (which also may or may not include strings).