From 1b7d323665c6f2ff06b8ebd132ae2a9e3af54b75 Mon Sep 17 00:00:00 2001 From: MaJaneb Date: Tue, 17 Jan 2023 16:35:38 +0300 Subject: [PATCH 1/4] s --- .idea/Chzh.iml | 14 ++++++++++++++ .idea/misc.xml | 4 ++++ .idea/workspace.xml | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 .idea/Chzh.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/Chzh.iml b/.idea/Chzh.iml new file mode 100644 index 0000000..8e5446a --- /dev/null +++ b/.idea/Chzh.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..cc2518d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..73eaf47 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + 1673962365428 + + + + \ No newline at end of file From 281d16ca1918fd754bc1d3e7f4b23b02cb2b2026 Mon Sep 17 00:00:00 2001 From: MaJaneb Date: Tue, 17 Jan 2023 17:12:42 +0300 Subject: [PATCH 2/4] s --- .github/workflows/cs102.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cs102.yml b/.github/workflows/cs102.yml index 4509ac4..8e1e8be 100644 --- a/.github/workflows/cs102.yml +++ b/.github/workflows/cs102.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8.6 + - name: Set up Python 3.10.7 uses: actions/setup-python@v2 with: - python-version: '3.8.6' + python-version: '3.10.7' - name: Install dependencies run: | python -m pip install --upgrade pip From 3031f11d30129ad804bbb0a788449e2073481048 Mon Sep 17 00:00:00 2001 From: MaJaneb Date: Tue, 17 Jan 2023 17:19:11 +0300 Subject: [PATCH 3/4] s --- .../inspectionProfiles/profiles_settings.xml | 6 ++++ .idea/vcs.xml | 6 ++++ .idea/workspace.xml | 34 +++++++++++++++++++ homework00/hello.py | 2 +- main.py | 16 +++++++++ 5 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/vcs.xml create mode 100644 main.py diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 73eaf47..adbc062 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -22,6 +22,29 @@ + + + + @@ -33,4 +56,15 @@ + + + + + file://$PROJECT_DIR$/main.py + 8 + + + + \ No newline at end of file diff --git a/homework00/hello.py b/homework00/hello.py index efe8767..4d6e97a 100644 --- a/homework00/hello.py +++ b/homework00/hello.py @@ -1,5 +1,5 @@ def get_greeting(name: str) -> str: - pass + return 'Hello, ' + name + '!' if __name__ == "__main__": diff --git a/main.py b/main.py new file mode 100644 index 0000000..5596b44 --- /dev/null +++ b/main.py @@ -0,0 +1,16 @@ +# This is a sample Python script. + +# Press Shift+F10 to execute it or replace it with your code. +# Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. + + +def print_hi(name): + # Use a breakpoint in the code line below to debug your script. + print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint. + + +# Press the green button in the gutter to run the script. +if __name__ == '__main__': + print_hi('PyCharm') + +# See PyCharm help at https://www.jetbrains.com/help/pycharm/ From 614c9459b742f804a19cb9527c08d1a397c3b227 Mon Sep 17 00:00:00 2001 From: MaJaneb Date: Tue, 17 Jan 2023 17:20:22 +0300 Subject: [PATCH 4/4] s --- homework00/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homework00/hello.py b/homework00/hello.py index 4d6e97a..337fb30 100644 --- a/homework00/hello.py +++ b/homework00/hello.py @@ -1,5 +1,5 @@ def get_greeting(name: str) -> str: - return 'Hello, ' + name + '!' + return "Hello, " + name + "!" if __name__ == "__main__":