हिंदी

Write a command(s) to write the following lines to the text file named hello.txt. Assume that the file is opened in append mode. “ Welcome my class” “It is a fun place” “You will learn and play” - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a command(s) to write the following lines to the text file named hello.txt. Assume that the file is opened in append mode.

“ Welcome my class”
“It is a fun place”
“You will learn and play”

टिप्पणी लिखिए

उत्तर

Assumed this statement, as stated in question -

filehandle = open("hello.txt","a")

commands to write following lines are -

1 file_handle = open("hello.txt", "a")
2 file_handle.write("Welcome my class")
3 file_handle.write("It is a fun place")
4 file_handle.write("you will learn and play")
5 file_handle.close()
shaalaa.com
Opening and Closing a Text Files
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 2: File Handling in Python - Exercise [पृष्ठ ३७]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 12
अध्याय 2 File Handling in Python
Exercise | Q 6. | पृष्ठ ३७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×