Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Araf-Practice #8

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.fontAliasing": "antialiased",
"workbench.statusBar.visible": true
}
"workbench.statusBar.visible": true,
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"python.formatting.provider": "none"
}
1 change: 1 addition & 0 deletions Ex_Files/01_01_begin/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import this
6 changes: 5 additions & 1 deletion Ex_Files/02_01_begin/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
RUN_INDENTED = False

RUN_INDENTED = True


message = "running unindented"

Expand All @@ -11,3 +13,5 @@
def my_function():
greet = "Hello"
return greet

print(my_function())
5 changes: 4 additions & 1 deletion Ex_Files/02_02_begin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@

formatted = greet_format.format(name)

print(intrupution, formatted)
print(formatted)

# print(formatted.lower())
# print(formatted.replace("John", "chudir vai"))