Python - File Reading and Writing Strategies
Consider this code:
What will be the output?
import sys
sys.stdout.write('Start')
sys.stdout.flush()
sys.stdout.write('End')What will be the output?
