在python 2.7中使用simpleplot(codeskulptor)

时间:2016-09-26 08:48:09

标签: python-2.7 codeskulptor

我已经使用以下导入在桌面上使用python 2.7中的simpleGUI。

try:
    import simplegui
except ImportError:
    import SimpleGUICS2Pygame.simpleguics2pygame as simplegui

现在,我想在框架中绘制数值。无论如何要做到这一点。我对simpleplot有疑问。

这是我的全部代码:

     # Import the module
try:
    import simplegui
except ImportError:
    import SimpleGUICS2Pygame.simpleguics2pygame as simplegui
    import simpleplot

# Define event handler functions
def input_handler(x):
    pass
def button_handler():
    dataset1 = {3: 5, 8: 2, 1: 3}
    dataset2 = [(1, 2), (4, 7), (2, 5), (7, 6)]
    simpleplot.plot_lines('Sample', 400, 300, 'x', 'y', [dataset1,     dataset2],   True, ['dataset1', 'dataset2'])
    pass

# Create a frame
f = simplegui.create_frame("UWB GUI",CANVAS_WIDTH, CANVAS_HEIGHT)
# Register event handlers
textField1=f.add_input("File Name", input_handler,100)

f.add_button("Filter", button_handler,100)

# Start frame and timers
f.start()

1 个答案:

答案 0 :(得分:0)

您必须执行以下导入:

try:
    import simplegui
    import simpleplot
except ImportError:
    import SimpleGUICS2Pygame.simpleguics2pygame as simplegui
    import SimpleGUICS2Pygame.simpleplot as simpleplot

您可以在SimpleGUICS2Pygame的文档中看到更多信息: https://simpleguics2pygame.readthedocs.io/en/latest/Tips.html

想法是尝试导入simplegui和simpleplot。如果程序在CodeSkulptor中运行,那就没关系。 如果程序使用标准Python运行,那么这些首次导入失败,然后重命名导入SimpleGUICS2Pygame版本。

P.-S。:未定义代码中的两个变量CANVAS_WIDTH和CANVAS_HEIGHT。