We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4febe commit 94ca07cCopy full SHA for 94ca07c
C05/co5_p1.py
@@ -5,4 +5,9 @@
5
print(s)
6
print(fn.closed) #file close status
7
print(fn.mode) #file mode
8
-print(fn.name) #file name
+print(fn.name) #file name
9
+
10
+fo =open("demo2.txt","w")
11
12
+fo.write("Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms")
13
+fo.close()
C05/demo2.txt
@@ -0,0 +1 @@
1
+Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms
0 commit comments