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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 19,574
» Latest member: linnchinnn
» Forum threads: 38,633
» Forum posts: 175,024

Full Statistics

Online Users
There are currently 382 online users.
» 0 Member(s) | 374 Guest(s)
Google, Bing, Baidu, Yandex, Facebook Dev

Latest Threads
[split] Simple webbot for...
Forum: Code Review
Last Post: AB073
2 hours ago
» Replies: 1
» Views: 55
Dynamic Module Import Err...
Forum: General Coding Help
Last Post: Larz60+
7 hours ago
» Replies: 1
» Views: 85
Providing clear and promi...
Forum: Homework
Last Post: asim18
9 hours ago
» Replies: 0
» Views: 54
What Are the Most Overloo...
Forum: News and Discussions
Last Post: Plyth
11 hours ago
» Replies: 2
» Views: 94
Setting AST node lineno c...
Forum: General Coding Help
Last Post: deanhystad
Yesterday, 09:15 PM
» Replies: 4
» Views: 206
How do select this table ...
Forum: Web Scraping & Web Development
Last Post: snippsat
Yesterday, 03:52 PM
» Replies: 7
» Views: 262
Wish to write a code for ...
Forum: General Coding Help
Last Post: Hasan2025
Yesterday, 06:40 AM
» Replies: 4
» Views: 979
I have a question
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 04:47 AM
» Replies: 1
» Views: 89
How to produce a CPU load...
Forum: General Coding Help
Last Post: Plyth
Yesterday, 02:19 AM
» Replies: 2
» Views: 121
Venv - Python Virtual Env...
Forum: General Coding Help
Last Post: Larz60+
Jun-17-2025, 02:23 AM
» Replies: 1
» Views: 130

 
  modifying tutorials
Posted by: metulburr - Oct-03-2016, 10:50 PM - Forum: Board - Replies (22)

[color=#333333][size=small]Create a sub thread for GUI, Gaming, Networking, and Web tutorials within each related category = Each forum would have its..... More

Print this item

  creating application for android with python
Posted by: shahpy - Oct-03-2016, 09:58 PM - Forum: News and Discussions - Replies (7)

hi

i was thinking about creating some application for android . i worked with java before and i,m familiar with it but sense i learned python
i do..... More

Print this item

  [Very Basic Example Only] Hello World
Posted by: Yoriz - Oct-03-2016, 09:55 PM - Forum: GUI tutorials - Replies (5)

import wx

app = wx.App(False)

frame = wx.Frame(None, -1, 'Hello World')
frame.Show()

app.MainLoop()

Print this item

  Running Class methods in a loop and updating variables.
Posted by: ujjwalrathod007 - Oct-03-2016, 08:26 PM - Forum: General Coding Help - Replies (3)

I have some code for class inside which I have methods. I want to run the code which While True loop. The problem I face is with updating the variable..... More

Print this item

  f-string, string format, and string expressions
Posted by: metulburr - Oct-03-2016, 07:47 PM - Forum: Fundamentals - No Replies

The bad way
This is called concatenation. In other languages this is considered okay. In Python it is not. Don't do this in Python. Its clunky..... More

Print this item

  Set Windows Python Path to run python in any directory
Posted by: metulburr - Oct-03-2016, 06:56 PM - Forum: Python Installation and Execution - No Replies

[quote]
UPDATE: Since Python 3.5 the python installer usually has by default itself added to the PATH environmental variable. This whole process is n..... More

Print this item

  Question about F2py...Help me plz!!!
Posted by: Yuji3131 - Oct-03-2016, 03:50 PM - Forum: General Coding Help - Replies (3)

I'm windows user.
To make sure my available Fortran compiler, I put [>>>Python -m numpy.f2py -c --help-fcompiler] into command line however there aft..... More

Print this item

  How does CMU Sphinx Java library work in Python
Posted by: j.crater - Oct-03-2016, 02:52 PM - Forum: General Coding Help - Replies (2)

Hello all,
I am wondering, how does the CMU Sphinx part of the Python Speech Recognition w..... More

Print this item

  PythonPath file
Posted by: JohnRLaw - Oct-03-2016, 02:46 PM - Forum: General Coding Help - Replies (6)

I am a beginning python programmer. My computer is running Linux Mint 17.3. I am using IDLE as the development environment. My question is simple. I k..... More

Print this item

  My import not working
Posted by: man_in_the_hill - Oct-03-2016, 11:43 AM - Forum: General Coding Help - Replies (4)

Hi Everybody

I am trying to learn python and I created my first script with a package that contains an imported module but it does not work!
Both..... More

Print this item

  for n in range(2, 10)
Posted by: diemildefreude - Oct-03-2016, 07:29 AM - Forum: General Coding Help - Replies (1)

xHey, I just started learning python (my first programming language) and I apologize if this question comes up often. I didn't find anything with the ..... More

Print this item

  [split] Link at bottom
Posted by: j.crater - Oct-03-2016, 07:11 AM - Forum: Board - Replies (4)

Is it possible to add a link to main forum list, from any thread one is reading?
Now there's a to jump to thread's subforum, and with few more clicks..... More

Print this item

  Problem witrh else and elif values.
Posted by: anolibal - Oct-03-2016, 05:14 AM - Forum: General Coding Help - Replies (7)

Hello there i am new into this programming world, and yesteday i was trying to apply the else and elif fonction without any success!
I let you a pic ..... More

Print this item

  Learning Loops
Posted by: BobA - Oct-03-2016, 01:59 AM - Forum: General Coding Help - Replies (15)

Here is a simple piece of code with two loops.

It prints out a long string of numbers.

I'm trying to wrap my head around this, but I
don't und..... More

Print this item

  how to stop console pop-up question?
Posted by: newuser121 - Oct-02-2016, 11:26 PM - Forum: General Coding Help - Replies (6)

Hello all,

I am a new user to Python (spyder).

When I run my script, which shows a plot figure, the following pop-up :
[img]https://s9.postimg...... More

Print this item

  Subtracting gives a keyerror:
Posted by: xepicxmonkeyx - Oct-02-2016, 10:04 PM - Forum: General Coding Help - Replies (7)

To give some conext to the code you'll find in the link below, I'm making a system which brute forces the game Peg Solataire. It's grid is laid out in..... More

Print this item

  sending email with python
Posted by: shahpy - Oct-02-2016, 08:44 PM - Forum: Networking - Replies (4)

hi

i want to send an email from my python program

i had write this code for doing that:
[php]import smtplib
from email.mime.multipart import M..... More

Print this item

  added favorite threads
Posted by: metulburr - Oct-02-2016, 07:54 PM - Forum: Board - Replies (1)

I added a favorite plugin. So now there is the option to add threads to your favorites at the bottom left side of the thread. You can view the list of..... More

Print this item

  testing live threads
Posted by: metulburr - Oct-02-2016, 06:50 PM - Forum: Board - Replies (12)

testing again

EDIT:
Live threads allow new posts to be seen without refreshing the page. 
Only admins/mods can enalbe live threads (by default se..... More

Print this item

  I need help with an instagram bot
Posted by: bobduckling221 - Oct-02-2016, 04:41 PM - Forum: General Coding Help - Replies (2)

So basically I have this bot, but it keeps on crashing. Here is the code... the _____ is personal names that i dont want to be used in public. I am no..... More

Print this item

  Embedded chat room
Posted by: metulburr - Oct-02-2016, 03:43 PM - Forum: Board - Replies (20)

For those that havent found it yet...

Go to the index page and scroll down and select "shoutbox" to expand

Let me know what you think of this pl..... More

Print this item

  Referrals
Posted by: Ofnuts - Oct-02-2016, 01:29 PM - Forum: Board - Replies (2)

In my Profile I see "Members Referred: 1". Is there a way to know which members were referred? I don't remember sending anyone here (yet).

Print this item

  No response required
Posted by: Yoriz - Oct-02-2016, 12:36 PM - Forum: Board - Replies (5)

Adding

Quote:No response required
as a new post to existing threads just seems spammy and makes it look like there is something new to ..... More

Print this item

  Error when using copy_expert(sql, file) in psycopg2 to insert data from several CSV
Posted by: klllmmm - Oct-02-2016, 05:58 AM - Forum: General Coding Help - Replies (5)

I'm a Newby,
I tried to insert columnar data sets in several CSV files into PostgreSQL database.
I tried this using [size=small]copy_expert(sql, fil..... More

Print this item

  Need to refer to Value of a key of a dictionary nested within a dictionary
Posted by: xepicxmonkeyx - Oct-01-2016, 11:34 PM - Forum: General Coding Help - Replies (14)

You can find my code at the link below, and you can ignore any commented sections of code (Accept the one in make_grid() ):

link removed, code adde..... More

Print this item

  Pillow _getexif for python 3
Posted by: Larz60+ - Oct-01-2016, 09:33 PM - Forum: General Coding Help - Replies (3)

Hello,

When pillow 2.1.0 was released, it included the following:


[quote]
(1.1.4b1 released)

+ Added experimental EXIF support for ..... More

Print this item

  any spam
Posted by: metulburr - Oct-01-2016, 07:34 PM - Forum: Board - Replies (6)

I am checking how much spam is getting through.

I only see a few times that any of us had to purge a user that got through in the logs. And in the ..... More

Print this item

  List Comprehensions
Posted by: ATXpython - Oct-01-2016, 06:07 PM - Forum: News and Discussions - Replies (10)

Hello,

I've recently discovered List Comprehensions - which, for the project I am working on, are awesome.
I'm having to create lists based on oth..... More

Print this item

  please help with while loops
Posted by: ryman - Oct-01-2016, 03:37 PM - Forum: Homework - Replies (6)

i am trying to get a while loop to repeat in my number guessing game and i dont kn
[code]import random



print ("this is the number guessing gam..... More

Print this item

  Temp Converter with Kelvin
Posted by: vader33 - Oct-01-2016, 02:32 PM - Forum: Homework - Replies (7)

Hey guys, new to the forum, and to coding. My college programming class has us writing code that will convert from Fahrenheit to Celsius and to Kelvin..... More

Print this item

  Fleshed Out
Posted by: ichabod801 - Oct-01-2016, 01:43 PM - Forum: Board - Replies (4)

As of this morning, we finally have a thread in every forum. :D

Print this item

  problem in finding modules
Posted by: katanou - Oct-01-2016, 12:38 PM - Forum: GUI - Replies (1)

hi,

i,m a complete newbie to python and this forum, so please correct me if i happen to violate any forum rules, by posting in the wrong subforum o..... More

Print this item

  TalkPython['Podcast']
Posted by: snippsat - Oct-01-2016, 11:52 AM - Forum: News and Discussions - Replies (1)

Podcast interview with different people that are involved with Python.
Talk Python To Me podcast

Print this item

  Avoiding cached results via URLLIB
Posted by: magpie5212 - Oct-01-2016, 11:42 AM - Forum: Networking - Replies (7)

I have some code getting the position of the ISS from http://api.open-notify.org/iss-now.json

Each time I run the code I get new values - exactly a..... More

Print this item

  Python h/w help
Posted by: tahmid909 - Oct-01-2016, 10:17 AM - Forum: Homework - Replies (3)

Hi all,
can i get a bit of help with my H/W, the task is as follows:
[size=medium]Develop a program that ana..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  [split] Simple webbot for... 2 hours ago AB073 AB073 Code Review
  Dynamic Module Import Err... 7 hours ago DaddyMAN Larz60+ General Codin...
  Providing clear and promi... 9 hours ago asim18 asim18 Homework
  What Are the Most Overloo... 11 hours ago shreyapatel Plyth News and Disc...
  Setting AST node lineno c... Yesterday, 21:15 voidtrance deanhystad General Codin...
  How do select this table ... Yesterday, 15:52 MarkMan snippsat Web Scraping ...
  Wish to write a code for ... Yesterday, 06:40 Hasan2025 Hasan2025 General Codin...
  I have a question Yesterday, 04:47 Clictithe Pedroski55 General Codin...
  How to produce a CPU load... Yesterday, 02:19 Calab Plyth General Codin...
  Venv - Python Virtual Env... 06-17, 02:23 DanneA Larz60+ General Codin...
  Webscraping: Attendance L... 06-17, 02:20 ThatsMe Larz60+ Web Scraping ...
Most views
  The best Prog... 572251
  Tutorial Requ... 484749
  Web Scraping ... 436788
  Newbie with P... 379619
  Thread remain... 351214
Most reputation
buran 581
snippsat 506
Larz60+ 452
Gribouillis 362
deanhystad 327
Most replies
  New Users Int... 450
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12066
buran 8173
snippsat 7336
deanhystad 6838
metulburr 5151
Top referrers
Googlepro 24
metulburr 6
python 6
NonEntity 5
as1221 3
Newest members
linnchinnn Today
crobertson Today
PeterBoowl Today
ldbdragon Today
GerardRandall Today

User Panel Messages

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