Commit f4a3b511c34642ef20d9a1373e46916e3ea1a460

Authored by liujiqiang
0 parents

demo

.idea/.gitignore 0 → 100644
  1 +++ a/.idea/.gitignore
  1 +# Default ignored files
  2 +/shelf/
  3 +/workspace.xml
... ...
.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
  1 +++ a/.idea/inspectionProfiles/profiles_settings.xml
  1 +<component name="InspectionProjectProfileManager">
  2 + <settings>
  3 + <option name="USE_PROJECT_PROFILE" value="false" />
  4 + <version value="1.0" />
  5 + </settings>
  6 +</component>
0 7 \ No newline at end of file
... ...
.idea/misc.xml 0 → 100644
  1 +++ a/.idea/misc.xml
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project version="4">
  3 + <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (cardApp)" project-jdk-type="Python SDK" />
  4 +</project>
0 5 \ No newline at end of file
... ...
.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
  1 +++ a/.idea/vcs.xml
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project version="4">
  3 + <component name="VcsDirectoryMappings">
  4 + <mapping directory="$PROJECT_DIR$" vcs="Git" />
  5 + </component>
  6 +</project>
0 7 \ No newline at end of file
... ...
demo.py 0 → 100644
  1 +++ a/demo.py
  1 +print("11")
0 2 \ No newline at end of file
... ...
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/
... ...