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.

brucebrown
1,059 PointsCan't call function in workspaces on the console
def test(): print("hey")
When I type in python Project1a in the console and then test() all I get is ">" but if I remove the def test(): part it will still print "hey". I've run this same code in the terminal and it works so I don't know why it won't in the console.

brucebrown
1,059 PointsBrandon Oakes
I tried your line of code and then used test() and it still won't print anything.
2 Answers

Brandon Oakes
Python Web Development Techdegree Student 11,501 PointsCan you post the question you referring to and the code snippet you are trying and ill check out the question

brucebrown
1,059 PointsCan't call function in workspaces on the console
Hey I figured it out I was trying to call the function in the console I didn't realize I had to put test() in the code itself.
Brandon Oakes
Python Web Development Techdegree Student 11,501 PointsBrandon Oakes
Python Web Development Techdegree Student 11,501 PointsAre you still having issues with the question? Not sure what project1a question is asking but if it wants you to make the function you put above and call it to print("hey), then the code below should work for you.
def test(): print("hey")
Above you are telling python I want you to print "hey" every time this function is called. The function has not been called until you type the line below which is calling the function:
test()