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

Can'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.

Brandon Oakes
seal-mask
.a{fill-rule:evenodd;}techdegree
Brandon Oakes
Python Web Development Techdegree Student 11,501 Points

Are 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()

Brandon Oakes

I tried your line of code and then used test() and it still won't print anything.

2 Answers

Can'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.