Commit f4a3b511c34642ef20d9a1373e46916e3ea1a460
0 parents
demo
Showing
8 changed files
with
60 additions
and
0 deletions
.idea/.gitignore
0 → 100644
.idea/card-app.iml
0 → 100644
1 | +++ a/.idea/card-app.iml | |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<module type="PYTHON_MODULE" version="4"> | |
3 | + <component name="NewModuleRootManager"> | |
4 | + <content url="file://$MODULE_DIR$" /> | |
5 | + <orderEntry type="inheritedJdk" /> | |
6 | + <orderEntry type="sourceFolder" forTests="false" /> | |
7 | + </component> | |
8 | +</module> | |
0 | 9 | \ No newline at end of file | ... | ... |
.idea/inspectionProfiles/profiles_settings.xml
0 → 100644
.idea/misc.xml
0 → 100644
.idea/modules.xml
0 → 100644
1 | +++ a/.idea/modules.xml | |
1 | +<?xml version="1.0" encoding="UTF-8"?> | |
2 | +<project version="4"> | |
3 | + <component name="ProjectModuleManager"> | |
4 | + <modules> | |
5 | + <module fileurl="file://$PROJECT_DIR$/.idea/card-app.iml" filepath="$PROJECT_DIR$/.idea/card-app.iml" /> | |
6 | + </modules> | |
7 | + </component> | |
8 | +</project> | |
0 | 9 | \ No newline at end of file | ... | ... |
.idea/vcs.xml
0 → 100644
demo.py
0 → 100644
main.py
0 → 100644
1 | +++ a/main.py | |
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/ | ... | ... |