Python Print Statements?

Am I correct that there's no way for a student to see print output from their code? This seems like a big problem for an introductory coding course

Comments

  • The print command in Python (and many other coding languages) "prints" the display in the console window when you run that code.

    print("Hello world!")

    The above should simply print the line in the console as it's a string:

    Hello world!

    The course(s) you're looking at may or may not have introduced the console (yet), but if they haven't they should very soon because it's a fundamental "thing" with coding. If it's a slightly higher level course, they may expect you to already be aware of it.


  • Sorry, I wasn't clear: I'm writing an introductory Python course, but I can't see how the students can see their print statements within the Udemy code exercises. I'm aware of the terminal in general, but I was hoping for something native to the Udemy platform