From b2023c0fff41507262b50911b6f15c447c2a2c40 Mon Sep 17 00:00:00 2001 From: Prashant Pandey <67793059+lemihack@users.noreply.github.com> Date: Mon, 25 Oct 2021 11:05:18 +0545 Subject: [PATCH] Create appendTest.py --- Python/appendTest.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Python/appendTest.py diff --git a/Python/appendTest.py b/Python/appendTest.py new file mode 100644 index 0000000..49f7b8a --- /dev/null +++ b/Python/appendTest.py @@ -0,0 +1,2 @@ +with open("my_file.txt", "a") as f: + f.write("new text")