andrii_sydor commited on
Commit ·
2a6f20b
1
Parent(s): 42977ad
Add data
Browse files- .gitignore +1 -0
- 1/elem_1/1.jpg +3 -0
- 1/elem_1/file +1 -0
- 1/elem_2/2.jpg +3 -0
- 1/elem_2/file +1 -0
- 2/elem_1/3.jpg +3 -0
- 2/elem_1/file +1 -0
- main.py +16 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.idea
|
1/elem_1/1.jpg
ADDED
|
Git LFS Details
|
1/elem_1/file
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1/elem_1
|
1/elem_2/2.jpg
ADDED
|
Git LFS Details
|
1/elem_2/file
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
1/elem_2
|
2/elem_1/3.jpg
ADDED
|
Git LFS Details
|
2/elem_1/file
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2/elem_1
|
main.py
ADDED
|
@@ -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/
|