Python Forum
Why Can't I do Undo on my Python?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Why Can't I do Undo on my Python?
#1
Shocked 
Pray

Hi friends. I need your help! I am new at learning Python and still have little idea on how to work things out. One of it is, I can't do an Undo (Ctrl+Z like any normal Undo function would be) on the worksheet (is this the right name for it? Worksheet?). When I press the Ctrl+Z, it let out this instead ---> ^Z.


Any help would be appreciated. Thanks!

Attached Files

Thumbnail(s)
   
Reply
#2
It is not a worksheet, it is a Python console or terminal. A terminal is not an editor, you just type new commands and it adds results after your commands.

Worksheets that execute Python code exist, they are the jupyter notebook but I wouldn't recommend that you start with this. It would give you more things to learn before you start anything concrete.

A simpler way to run Python is to start with an editor where you write the code, and you can UNDO, then you can run the code. A good editor for beginners of python is Thonny. I recommend that you start with this IDE (integrated development environment).
buran likes this post
« We can solve any problem by introducing an extra level of indirection »
Reply
#3
How are you running python? Do you run the python (or python3) command in a shell? Something like this in a Windows PowerShell?
Output:
PS C:\> python Python 3.12.4 (tags/v3.12.4:8e8a4ba, Jun 6 2024, 19:30:16) [MSC v.1940 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> x = 3 >>> print(X^Z
Or are you using IDLE? IDLE is and IDE that comes as part of most Python distributions. It is not a good IDE, but it is better than typing directly into the Python interractive interpreter. If using IDLE, the IDLE shell understands that ctrl+z is an undo. IDLE also has a file editor.

Thonny is a better IDE than IDLE, but you have to install Thonny separately. Oops! Take that back. Looks like you can install Thonny and it will install Python 3.10 for you. Handy for new programmers.

I like Visual Studio Code. If you do programming with Visual Studio, you will find VSCode familiar.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Undo interation to make a single list? DustinKlent 2 2,819 Nov-29-2020, 03:41 AM
Last Post: DustinKlent
  Simulate Undo keyboard command in code sgskge1 6 5,380 May-17-2019, 01:21 PM
Last Post: sgskge1

Forum Jump:

User Panel Messages

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