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 Collections (2016, retired 2019) Lists Shopping List Take Three

michael ventura
michael ventura
1,260 Points

how to bring recent file into shell without typing it out

maybe something i missed awhile back haha... but how do i bring my file into the python shell without having to type out file name. i see him type python.. then shopping_list3 pops right up.... where i have been typing out the name of the file everytime i want to run?

1 Answer

Steven Parker
Steven Parker
229,732 Points

What you're probably seeing is command completion. The instructor is probably typing in the first letter or two of the file name and then pressing the TAB button to have the shell fill in the rest of the name.

Not that this only works when you've typed enough of the name to uniquely identify it from any other files.