43.
How can you copy the contents of one file to another in Python?

46.
What will be the output of the following Python code?
str = raw_input("Enter your input: ");
print "Received input is : ", str

47.
What will be the output of the following Python code?
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name
 
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
 
for index in range(5):
   line = fo.next()
   print "Line No %d - %s" % (index, line)
 
# Close opened file
fo.close()

50.
How can you read the entire contents of a binary file in Python?