print("Hello, World!") import random print("Random number: ", random.randint(1, 10)) import numpy array = numpy.array([1, 2, 3]) print("Numpy:", numpy.sin(array)) import turtle t = turtle.Turtle() t.forward(100) #from p5 import * #def setup(): # createCanvas(400, 200) #def draw(): # color = frameCount % 255 # background(color, color, 255 - color) #run() #import pygal #bar_chart = pygal.Bar() #bar_chart.add("Fibonacci", [1, 1, 2, 3, 5]) #bar_chart.render()
Run