Terminal problem
Hello,
I have a problem which means that when I run the program the text is not included in the terminal that I have coded? Example if I have coded this:
course = '''Hi John
Here is our first email to you.
tankyou.
'' '
If I run this in the terminal it just says:
Process finished with exit code 0
But I do not get with the text to run? What could be the error?I code in python and use pycharm.
请先登录再写评论。
Hi,
You have assigned the "course" variable, but did not print it with `print(course)`.