Skip to content

Commit 62977ab

Browse files
committed
First files
1 parent 185c541 commit 62977ab

File tree

8 files changed

+54
-0
lines changed

8 files changed

+54
-0
lines changed

projeto_python_basico/.idea/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/.idea/projeto_python_basico.iml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

projeto_python_basico/main.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This is a sample Python script.
2+
3+
# Press Shift+F10 to execute it or replace it with your code.
4+
# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings.
5+
6+
7+
def print_hi(name):
8+
# Use a breakpoint in the code line below to debug your script.
9+
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
10+
11+
12+
# Press the green button in the gutter to run the script.
13+
if __name__ == '__main__':
14+
print_hi('PyCharm')
15+
16+
# See PyCharm help at https://www.jetbrains.com/help/pycharm/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Hello world")

0 commit comments

Comments
 (0)