Ide Python Online
#1
https://www.onlinegdb.com/online_python_compiler
#2
https://repl.it/languages/python3
iTry
#1
https://www.onlinegdb.com/online_python_compiler
#2
https://repl.it/languages/python3
Use this site
https://repl.it/languages/python3
# 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/
Use this site
https://www.programiz.com/python-programming/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