Python Forum
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 18,761
» Latest member: kelechi
» Forum threads: 37,679
» Forum posts: 171,261

Full Statistics

Online Users
There are currently 432 online users.
» 1 Member(s) | 426 Guest(s)
Bing, Facebook, Google, Baidu, Yandex, gerpark

Latest Threads
Coding help required in P...
Forum: General Coding Help
Last Post: gerpark
1 minute ago
» Replies: 1
» Views: 90
scipt with apparently no ...
Forum: GUI
Last Post: INS
7 minutes ago
» Replies: 4
» Views: 136
Sending email using own s...
Forum: General Coding Help
Last Post: robertkwild
29 minutes ago
» Replies: 5
» Views: 106
writing list to csv file ...
Forum: General Coding Help
Last Post: jacksfrustration
1 hour ago
» Replies: 4
» Views: 158
Loop over dataframe to fi...
Forum: Data Science
Last Post: Pedroski55
1 hour ago
» Replies: 7
» Views: 107
Website Scraping Problems
Forum: Web Scraping & Web Development
Last Post: Larz60+
1 hour ago
» Replies: 1
» Views: 43
PyGUI installation issue
Forum: General Coding Help
Last Post: Gribouillis
2 hours ago
» Replies: 1
» Views: 47
ModuleNotFoundError: No m...
Forum: General Coding Help
Last Post: Gribouillis
3 hours ago
» Replies: 2
» Views: 216
Django
Forum: Web Scraping & Web Development
Last Post: JamesWilson
4 hours ago
» Replies: 2
» Views: 569
context Django
Forum: Web Scraping & Web Development
Last Post: JamesWilson
4 hours ago
» Replies: 2
» Views: 615

 
Thumbs Up New Users Introduce Yourself
Posted by: Yoriz - Sep-13-2016, 04:53 PM - Forum: Bar - Replies (434)

Please feel welcome to use this thread to introduce yourself to the forum.

Print this item

  A List of Free Game Resources
Posted by: Yoriz - Sep-13-2016, 04:21 PM - Forum: Game Tutorials - Replies (1)

Images
http://www.lostgarden.com/search/label/f...20graphics
http://www.rpg-palace.com/visual-resourc...esets-rmxp
http://..... More

Print this item

  Portal
Posted by: Kebap - Sep-13-2016, 02:27 PM - Forum: Board - Replies (7)

The portal currently shows a copy of all recent posts. Which is nice. However, some of them are very long. And they are shown in total. It would be be..... More

Print this item

Thumbs Up First impressions on forum software
Posted by: Kebap - Sep-13-2016, 02:24 PM - Forum: Board - Replies (29)

The new forum software seems really nice! I just wanted to explain this, because I may post more threads focussing on small improvements and annoyance..... More

Print this item

  User signatures
Posted by: Kebap - Sep-13-2016, 02:19 PM - Forum: Board - Replies (17)

I wanted to copy my signature from the old forum to here, but receive an error message:


[quote]
You cannot update your signature because it is too l..... More

Print this item

  Are the security questions for registration necessary
Posted by: Mekire - Sep-12-2016, 06:06 PM - Forum: Board - Replies (5)

Yo.

Also, assuming those are intended to be permanent, you really need to get rid of those security questions for registration.  It is way too much..... More

Print this item

  Text Adventure Tutorial - if structure to dictionary
Posted by: ichabod801 - Sep-05-2016, 10:26 PM - Forum: Game Tutorials - Replies (6)

So, you're new to Python, and you want to make a game. You figure you'll make a text adventure game, that won't be too hard. To get started, you just ..... More

Print this item

  Modules part 3
Posted by: metulburr - Sep-05-2016, 09:11 PM - Forum: Fundamentals - No Replies

Package Imports
Package imports are nothing more than a directory of imports. It turns a path on your computer into another namepsace, ..... More

Print this item

  Modules part 2
Posted by: metulburr - Sep-05-2016, 09:11 PM - Forum: Fundamentals - Replies (1)

Module Creation
Python modules are just files of python code. You do not need to write special syntax to tell python you are making a m..... More

Print this item

  Modules part 1
Posted by: metulburr - Sep-05-2016, 09:10 PM - Forum: Fundamentals - No Replies

Each file is a module, and modules import other modules to use the names they define. Modules provide an easy way to organize components into a system..... More

Print this item

  Multiple expressions with "or" keyword
Posted by: metulburr - Sep-05-2016, 09:10 PM - Forum: Common pitfalls and what to do - Replies (1)

Quote:incorrect
if input_value == "Yes" or "yes" or "y" or "Y":

A simple mistake: each expression after a or keyword i..... More

Print this item

  windows command prompt modifications, add options, start loc, add copy
Posted by: metulburr - Sep-05-2016, 09:06 PM - Forum: Python Installation and Execution - Replies (1)

change starting location of opening command prompt

This is a quick tutorial to change your command prompt auto start directory. Lets assume ..... More

Print this item

  syntax highlighting
Posted by: metulburr - Sep-05-2016, 12:32 AM - Forum: Board - Replies (57)

There is a plugin installed that allows syntax highlighting. The BBCode for it is

[shcode=python]CODE HERE[/shcode]
EDIT:
The BBCode ..... More

Print this item

  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

Print this item

  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

Print this item

  Testing formatting
Posted by: Ofnuts - Sep-02-2016, 10:01 AM - Forum: General Coding Help - Replies (1)

Trying

SomeCode+=instructions
  • A list
  • with
  • bullets
    1. a sublist
    2. with
    3. numbers
    [/lis..... More

Print this item

  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

Print this item

  Strings, index and slicing
Posted by: metulburr - Sep-01-2016, 08:19 PM - Forum: Fundamentals - Replies (5)

Single and Double Quotes
[spoiler=(Click to expand)]
String literals can be enclosed in either two single or two double quotes. The reason fo..... More

Print this item

  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

Print this item

  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

Print this item

  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


Attached Files

Thumbnail(s)
               
Print this item

  How to Execute python code
Posted by: metulburr - Sep-01-2016, 08:15 PM - Forum: Python Installation and Execution - Replies (2)

There are 3 main ways to execute python code.

1) Interactive Prompt
[spoiler=(Click to expand)]
This is mostly used for experimenting and ..... More


Attached Files

Thumbnail(s)
   
Print this item

  Namespace flooding with * imports
Posted by: metulburr - Sep-01-2016, 08:14 PM - Forum: Common pitfalls and what to do - Replies (1)

This is a tutorial of what not to do. Why not to do it, and what to use instead.


What not to use: (this is the most widely used examples)
[code]..... More

Print this item

  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

Print this item

  Creating a repo for your completed scripts
Posted by: metulburr - Sep-01-2016, 08:12 PM - Forum: Tutorials - Replies (1)

If you dont know, there are sites that you can upload your code to where people can look, upload fixes, comment on, and download your code. It makes i..... More

Print this item

  Popularity Poll of myBB
Posted by: sparkz_alot - Sep-01-2016, 08:02 PM - Forum: Board - Replies (8)

What do you think of myBB from a 'user' standpoint?

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Coding help required in P... 1 minute ago KakashiSenpai gerpark General Codin...
  [Tkinter] scipt with appa... 7 minutes ago INS INS GUI
  Sending email using own s... 29 minutes ago robertkwild robertkwild General Codin...
  writing list to csv file ... 1 hour ago jacksfrustration jacksfrustration General Codin...
  Loop over dataframe to fi... 1 hour ago Scott Pedroski55 Data Science
  Website Scraping Problems 1 hour ago JamesWilson Larz60+ Web Scraping ...
  PyGUI installation issue 2 hours ago Wallflower Gribouillis General Codin...
  ModuleNotFoundError: No m... 3 hours ago raman Gribouillis General Codin...
  Django 4 hours ago Sowmya JamesWilson Web Scraping ...
  context Django 4 hours ago Sowmya JamesWilson Web Scraping ...
  Create new column in data... Yesterday, 22:18 Scott Scott Data Science
Most views
  The best Prog... 540408
  Web Scraping ... 408509
  Tutorial Requ... 390641
  Newbie with P... 330058
  Thread remain... 310576
Most reputation
buran 582
snippsat 499
Larz60+ 452
Gribouillis 352
deanhystad 315
Most replies
  New Users Int... 434
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 11910
buran 8089
snippsat 7157
deanhystad 6384
metulburr 5150
Top referrers
Googlepro 21
python 6
metulburr 6
NonEntity 5
buran 3
Newest members
kelechi Today
Yusee Yesterday
AlbertKatz Yesterday
KakashiSenpai Yesterday
pachu Yesterday

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020