Jump to content

Search the Community

Showing results for tags 'python course'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Job Boards
    • Jobs
  • Community Lounge and FAQ
    • Forum News
    • Open Forum
    • New Members Forum - Start Here!
  • Entrepreneurship, Business and Marketing
    • Social Media Marketing & Web Marketing
    • Entrepreneurship
    • Career Questions - Asked and Answered
  • StudioWeb
    • StudioWeb
    • StudioWeb News
    • StudioWeb Projects
  • Programming
    • Python
    • Javascript
    • PHP
  • Web Design
    • Beginners Web Design
    • HTML/XHTML
    • Dreamweaver
    • CSS
    • Advanced Web Design
    • Business of Web Design
    • Web Design News
  • Miscellaneous
    • Cybersecurity
    • Miscellaneous Software
    • Blogs and CMS
    • Web Accessibility
    • Peer-to-Peer Reviews
    • Website Templates
    • Web Design Jobs
    • Test Forum
  • Archives
    • Beginners Web Design
    • Course: The Complete Entrepreneur
    • Web Accessibility
    • Photoshop
    • CSS
    • Forum Rules and Etiquette
    • Flash
    • ASP
    • General Programming
    • Expression Web
    • Beginners Ruby
    • Killersites University
    • Actionscript

Calendars

  • Community Calendar

Categories

There are no results to display.

There are no results to display.

Product Groups

  • Business & Entrepreneur Courses

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website


LinkedIn


Facebook


Twitter


AIM


Yahoo


Other


Location


Interests

Found 2 results

  1. 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!")
  2. Hello, I'm following video, and for some reason IF statement doesn't work properly: def flow_control(): answer = input("Do you want to learn about multiline text strings? (yes or no)") #if answer == "yes" or answer == "y": if answer == ("yes" or "y"): display_lesson() else: use_time() print("End program") Commented out IF statement works perfectly well, but 2nd one work only for "yes". How can i make it work?
×
×
  • Create New...