Jump to content

BigBoss

Member
  • Posts

    6
  • Joined

  • Last visited

BigBoss's Achievements

Newbie

Newbie (1/14)

  • One Month Later Rare
  • Dedicated Rare
  • Week One Done Rare
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. I've tried the source code, and the result is the same. I don't know why that is.
  2. Hi, okay, I downloaded the source code and opened the file with IDLE and the output is the same:
  3. I'll check it now. Thanks for the reply, Stef. I appreciate it.
  4. I started following the beginners Python Course recently, and today I entered the code as you shown in the video, only the star that Python creates has no white spaces. I was wondering if there was something that I was doing wrong. I've included a screen shot of it. --- import turtle t = turtle.Pen() t.color('blue','green') t.begin_fill() count = 0 #draw a star for x in range(1,9): t.forward(300) t.left(225) cunt = count+1 print("Count is: " + str(count)) #stop drawing after 8 loops if count > 7 and count < 9: #if count > 7: print("The star pattern is complete!") #break t.end_fill() print("A star is born!")
×
×
  • Create New...