# some best python compilers are:
https://repl.it/ # best online compiler
https://www.onlinegdb.com/online_python_compiler/
https://www.tutorialspoint.com/execute_python_online.php/
https://www.programiz.com/python-programming/online-compiler/
You can use
1. https://www.onlinegdb.com/
2.https://www.programiz.com/c-programming/online-compiler/
this as well, works really well for me.You can also save code there.
Use this site
https://www.programiz.com/python-programming/online-compiler/
use replit best online compiler
use repl.it best online compiler
def func3(lst):
tmpLst = []
for i in range(len(lst)):
if lst[i] % 3 == 0:
tmpLst.append(i//3)
else:
tmpLst.append(i)
return tmpLst