From 4f7b94e7d4acb779009238145577dc49aa35e68a Mon Sep 17 00:00:00 2001 From: kishore5632 Date: Wed, 21 Jun 2023 08:44:48 +0530 Subject: [PATCH] Initial commit --- .idea/.gitignore | 3 +++ .idea/demo_project_WD.iml | 8 ++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 4 ++++ .idea/modules.xml | 8 ++++++++ main.py | 16 ++++++++++++++++ text1.txt | 1 + text2.txt | 1 + 8 files changed, 47 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/demo_project_WD.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 main.py create mode 100644 text1.txt create mode 100644 text2.txt diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/demo_project_WD.iml b/.idea/demo_project_WD.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/.idea/demo_project_WD.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file 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/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f62e2c2 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..7085585 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file 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/ diff --git a/text1.txt b/text1.txt new file mode 100644 index 0000000..be570a5 --- /dev/null +++ b/text1.txt @@ -0,0 +1 @@ +these is my text1 file. \ No newline at end of file diff --git a/text2.txt b/text2.txt new file mode 100644 index 0000000..ac86744 --- /dev/null +++ b/text2.txt @@ -0,0 +1 @@ +these is my text2 file. \ No newline at end of file