Python Forum
How to Make Python code execution pause and resume to create .csv and read values.
Thread Rating:
  • 2 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to Make Python code execution pause and resume to create .csv and read values.
#1
I want to write a code which can create "mydata.csv" file, (python execution should pause here) write values into "mydata.csv", after closing "mydata.csv" python code execution should resume. Wall Wall Wall
Reply
#2
You need to provide a more detailed objective.
It's hard to imagine exactly what you are actually trying to do.
Reply
#3
You're describing synchronous code.

fd = open('your_file', 'w')
# code which does other stuff
# now we have new data, write it
fd.write(data)
# code
# close the file descriptor before your program exits
fd.close()
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How can I make this code more efficient and process faster? steven_ximen 0 355 Dec-17-2024, 04:27 PM
Last Post: steven_ximen
  I cannot create a virtual environment on visual studio code using python Willem_Aucamp316 2 2,734 Nov-27-2024, 02:20 PM
Last Post: menator01
  I dont understand on how to create a Bot that can read info on the screen aloud RaySuS777 0 619 Jun-19-2024, 10:02 AM
Last Post: RaySuS777
  How does this code create a class? Pedroski55 6 1,944 Apr-21-2024, 06:15 AM
Last Post: Gribouillis
  kill python execution program lebossejames 0 761 Mar-16-2024, 11:16 AM
Last Post: lebossejames
  How can I pause only one object? actualpy 1 973 Feb-01-2024, 07:43 PM
Last Post: deanhystad
  I want to create one resume parser api using Python Flask parthsukhadiya 1 2,010 Nov-28-2023, 05:07 PM
Last Post: Pedroski55
  Recommended way to read/create PDF file? Winfried 3 4,529 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  hi need help to make this code work correctly atulkul1985 5 1,849 Nov-20-2023, 04:38 PM
Last Post: deanhystad
  newbie question - can't make code work tronic72 2 1,465 Oct-22-2023, 09:08 PM
Last Post: tronic72

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020