当前位置:   article > 正文

python在线模拟_Skulpt在线模拟运行Python工具

sk.misceval.buildclass

1. Skulpt是一个完全依靠浏览器端模拟实现Python运行的工具

2. 不需要预处理、插件或服务器端支持,只需编写python并重新载入即可。

3. 由于代码完全是在浏览器中运行的,所以不必担心“服务器崩溃”问题。

demo:

function outf(text) {

var mypre = document.getElementById("output");

mypre.innerHTML = mypre.innerHTML + text;

}

function builtinRead(x) {

if (Sk.builtinFiles === undefined || Sk.builtinFiles["files"][x] === undefined)

throw "File not found: '" + x + "'";

return Sk.builtinFiles["files"][x];

}

function runit() {

var prog = document.getElementById("yourcode").value;

var mypre = document.getElementById("output");

mypre.innerHTML = '';

Sk.pre = "output";

Sk.configure({ output: outf, read: builtinRead, __future__: Sk.python3});

(Sk.TurtleGraphics || (Sk.TurtleGraphics = {})).target = 'mycanvas';

var myPromise = Sk.misceval.asyncToPromise(function() {

return Sk.importMainWithBody("", false, prog, true);

});

myPromise.then(function(mod) {

console.log('success');

},

function(err) {

console.log(err.toString());

});

}

Try This

import turtle

print('hello')

t = turtle.Turtle()

t.color('red')

t.forward(75)

Run

 
 

d8fde831cfe46d4a677b584edd2df01b.png

但是,有的问题,不能识别eval函数,不知道为什么?

d1f00a30cc6d84ff8c3b300bbc2f5aa4.png

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/643228
推荐阅读
相关标签
  

闽ICP备14008679号