Write a program to move the player to a different place in the world.
import mcpi.minecraft as minecraft world = minecraft.Minecraft.create() x = 10 y = 11 z = 12 world.player.setPos(x, y, z)