Reputation: 27806
I am reading the PyCharm quick guide: https://www.jetbrains.com/help/pycharm/quick-start-guide.html
I did "Create a project from scratch".
I read the other parts of this page.
But I have no clue what to do next.
I want to code this:
print('hello word.')
in a file called hello.py
.
The IDE looks like this at the moment::
Where and how should I create hello.py
file?
Upvotes: 1
Views: 1916
Reputation: 3483
Several options:
touch hello.py
Upvotes: 0
Reputation: 3057
Press Alt + Insert
, select New
from drop-down list, and enter new filename.
Upvotes: 0
Reputation: 8500
Rightclick on foo
and you will see New
menu, hover on it, then click Python file
and name it hello
.
Upvotes: 4