Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 19,918
» Latest member: Jillscitt
» Forum threads: 38,717
» Forum posts: 175,481
Full Statistics
|
Online Users |
There are currently 56 online users. » 0 Member(s) | 46 Guest(s) AOL, Bing, Google, Twitter, Mojeek, Apple
|
Latest Threads |
Select Python comment (#)
Forum: General Coding Help
Last Post: deanhystad
3 hours ago
» Replies: 3
» Views: 220
|
New to the field
Forum: News and Discussions
Last Post: Polybunny
4 hours ago
» Replies: 0
» Views: 46
|
Seeking feedback: dynamic...
Forum: General Coding Help
Last Post: Stowersw
Yesterday, 03:23 PM
» Replies: 4
» Views: 2,221
|
Python and excel vba codi...
Forum: General Coding Help
Last Post: DeaD_EyE
Yesterday, 11:09 AM
» Replies: 2
» Views: 781
|
Web Scrapper to find prov...
Forum: General Coding Help
Last Post: Olivia
Yesterday, 08:36 AM
» Replies: 1
» Views: 2,084
|
403 Error
Forum: Web Scraping & Web Development
Last Post: snippsat
Sep-11-2025, 08:39 PM
» Replies: 6
» Views: 1,409
|
I'm trying to make a piec...
Forum: General Coding Help
Last Post: DeaD_EyE
Sep-11-2025, 05:54 PM
» Replies: 4
» Views: 1,045
|
New to Python and Pygame
Forum: Game Development
Last Post: JMcM
Sep-11-2025, 05:34 PM
» Replies: 5
» Views: 1,173
|
pip fails to install PyGO...
Forum: General Coding Help
Last Post: Larz60+
Sep-11-2025, 10:50 AM
» Replies: 2
» Views: 1,739
|
how to manage crypto trad...
Forum: General Coding Help
Last Post: Mercyto
Sep-11-2025, 06:01 AM
» Replies: 2
» Views: 2,904
|
|
|
testing syntax highlighter |
Posted by: metulburr - Sep-05-2016, 12:22 AM - Forum: Bar
- Replies (5)
|
 |
Python
[shcode=python]
class Ship:
def __init__(self, sheet):
self.frames = strip_from_sheet(sheet, (0,0), (122,164), 4, 4)
self..... More
|
|
|
testing unanswered posts (old) |
Posted by: metulburr - Sep-02-2016, 04:40 PM - Forum: Board
- No Replies
|
 |
The CSS for code blocks is located at ACP -> Templates and Style -> Themes -> Default -> global.css -> Select fro mthe drop down menu ".codeblock". T..... More
|
|
|
Day one thoughts |
Posted by: sparkz_alot - Sep-01-2016, 08:31 PM - Forum: Board
- Replies (4)
|
 |
This software, myBB, seems to work quite well right out of the box. I do, however, have two dislikes. The first is the "Member List" is viewable by ev..... More
|
|
|
Lists |
Posted by: metulburr - Sep-01-2016, 08:18 PM - Forum: Fundamentals
- Replies (1)
|
 |
Both lists and dictionaries are collections of objects. They both can be changed in place, can grow or shrink, and also can have any other objects nes..... More
|
|
|
Dictionaries |
Posted by: metulburr - Sep-01-2016, 08:18 PM - Forum: Fundamentals
- Replies (1)
|
 |
You can think of Dictionaries as a collection of data that is unorganized, unlike lists. Items in dictionaries are stored and fetched by a key, instea..... More
|
|
|
Indentation |
Posted by: metulburr - Sep-01-2016, 08:16 PM - Forum: Fundamentals
- Replies (2)
|
 |
Python detects block boundaries automatically, by line indentation. (the empty space to the left of your code). All statements indented the same dista..... More
|
|
|
Files |
Posted by: metulburr - Sep-01-2016, 08:13 PM - Forum: Fundamentals
- Replies (4)
|
 |
Files
The built-in function open() creates a Python file object, which serves as a link to a file residing on your machine. After cal..... More
|
|
|
|