On python/pyscripter using the turtles i have to write a program that has 3 functions: drawA(), drawB(), drawC() each draw a letter and advance the turtle on to where the next letter will begin. Once these functions are working correctly, have your program write "ABCBA"

I have no idea where to begin or what to do for this assignment, it would be helpful if you can help

Sure! I'd be happy to help you with that. Let's break down the problem step by step:

Step 1: Import the turtle module
To use the turtle graphics in Python, you need to import the turtle module. You can do this by adding the following line at the beginning of your code:

```python
import turtle
```

Step 2: Create a turtle and set up the screen
Next, you need to create a turtle object and set up the screen where the turtle will draw. You can do this by adding the following lines of code:

```python
screen = turtle.Screen()
screen.setup(width=400, height=400)
t = turtle.Turtle()
```

Step 3: Define the drawA() function
Inside your function, use the turtle object (t) to draw the letter 'A' using turtle graphics commands. Here's an example of how you can draw the letter 'A':

```python
def drawA():
t.penup()
t.goto(0, 0)
t.pendown()
t.setheading(60)
t.forward(100)
t.right(120)
t.forward(100)
t.backward(50)
t.right(60)
t.backward(50)
```

Step 4: Define the drawB() function and draw the letter 'B'
Repeat the same process for drawing the letter 'B' inside the drawB() function. Here's an example:

```python
def drawB():
t.penup()
t.goto(120, 0)
t.pendown()
t.setheading(90)
t.forward(100)
t.circle(50, 180)
t.forward(100)
t.right(180)
t.forward(100)
```

Step 5: Define the drawC() function and draw the letter 'C'
Again, repeat the same process for drawing the letter 'C' inside the drawC() function. Here's an example:

```python
def drawC():
t.penup()
t.goto(240, 0)
t.pendown()
t.setheading(0)
t.circle(50, 180)
t.forward(50)
```

Step 6: Call the functions and write "ABCBA"
Now, you can call the functions in the correct order to draw the letters and advance the turtle to the next letter's position. To write "ABCBA", you can call the functions like this:

```python
drawA()
drawB()
drawC()
drawB()
drawA()
```

Step 7: Complete the program and close the turtle graphics window
Finally, you need to add the necessary code to complete the program and close the turtle graphics window. Here's an example:

```python
screen.mainloop() # Keeps the window open
turtle.done() # Closes the turtle graphics window when done
```

That's it! You have now written a program that draws the letters 'A', 'B', 'C' and writes "ABCBA" using turtle graphics. Feel free to customize the design of each letter or add more functionality as needed.