Skip to content
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
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
2 changes: 1 addition & 1 deletion Ex_Files/01_01_end/hello.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import this
import this
3 changes: 2 additions & 1 deletion Ex_Files/02_01_begin/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RUN_INDENTED = False
RUN_INDENTED = True

message = "running unindented"

Expand All @@ -11,3 +11,4 @@
def my_function():
greet = "Hello"
return greet
print(my_function())
5 changes: 5 additions & 0 deletions Ex_Files/02_02_begin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@
formatted = greet_format.format(name)

print(intrupution, formatted)

print(formatted.upper())
print(formatted.lower())

print(formatted.replace("John","kaushik"))