logo

Ace Recorder is an online Python IDE and recorder built with the Ace code editor.

Record coding sessions, download, upload and replay them as often as you want.

Recordings are interactive, so you can directly copy code from the 'video'. You can even pause and edit the code to run it in real-time!

Suggested Recordings

# basic email regex in python
import re

string = "The emails are john.doe@example.com, alex@example.com"

pat = r"\b[^\s]+@[^\s]+\.[^\s]+\b"

m = re.findall(pat, string)
print(m)
# done

				
			

print("hello world")


				
			
#welcome!
# this is an interactive recording
# you can pause and edit the code if you wish
# when you press play, your edits will be removed and the recording continues.
# you can also run the code.
# basic for loop in python

for i in range(15):
    if i%2 == 0:
        print(f"{i} is even")

# have fun!b :)



				
			



print("hi there")