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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,244
» Latest member: thebigback
» Forum threads: 38,778
» Forum posts: 175,804

Full Statistics

Online Users
There are currently 44 online users.
» 0 Member(s) | 39 Guest(s)
Bing, Google, AOL, Applebot

Latest Threads
Help with Serial.write in...
Forum: General Coding Help
Last Post: racingsubby
18 minutes ago
» Replies: 2
» Views: 27
Backward compatibility qu...
Forum: News and Discussions
Last Post: yutaozhou
1 hour ago
» Replies: 4
» Views: 158
I’m building a Python Dat...
Forum: GUI
Last Post: Gribouillis
3 hours ago
» Replies: 6
» Views: 161
[split] print two differe...
Forum: General Coding Help
Last Post: Gribouillis
Today, 05:37 AM
» Replies: 1
» Views: 69
Data Science
Forum: Data Science
Last Post: mamta25
Today, 05:27 AM
» Replies: 3
» Views: 2,584
Two arguments in input fu...
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 12:56 AM
» Replies: 4
» Views: 157
[openpyxl] Set the lockin...
Forum: General Coding Help
Last Post: Pedroski55
Nov-07-2025, 11:59 AM
» Replies: 3
» Views: 150
New Users Introduce Yours...
Forum: Bar
Last Post: BelleroDev
Nov-07-2025, 09:09 AM
» Replies: 452
» Views: 375,477
Best book on learning Pyt...
Forum: News and Discussions
Last Post: mamta25
Nov-07-2025, 06:07 AM
» Replies: 2
» Views: 3,387
Recommend me a Python boo...
Forum: Data Science
Last Post: mamta25
Nov-06-2025, 08:33 AM
» Replies: 7
» Views: 5,587

 
  Scraping number in % from website
Posted by: santax - Mar-19-2017, 10:49 AM - Forum: Web Scraping & Web Development - Replies (3)

Hi all, for my chessclub I'm trying to automate collecting Timeout percentages. 

It hidden in this code:          <aside>7.69%</aside>



  [py..... More

Print this item

  **** PassWord
Posted by: kadoushka - Mar-19-2017, 09:10 AM - Forum: General Coding Help - Replies (13)

I want to make a password script in python that changes my input to *,
so when i type 1234 you can only see ****

pa=getpass.getpass("Password: "),..... More

Print this item

  Programming like a pro: tools for software planning
Posted by: BigMan - Mar-19-2017, 08:17 AM - Forum: General Coding Help - Replies (1)

Hi,

in the past I used Python mainly for some small applications (all for private purposes).
Now I have something bigger in mind (a kind of home-a..... More

Print this item

  Replace Single Backslash with Double Backslash in python
Posted by: saswatidas437 - Mar-19-2017, 07:56 AM - Forum: General Coding Help - Replies (2)

I have a need to replace single backslashes with double backslashes. I know that the replace method of the string object can be used, however I'm not ..... More

Print this item

  is this a directory?
Posted by: Skaperen - Mar-19-2017, 04:51 AM - Forum: General Coding Help - Replies (4)

there appears to be many ways to test if i have a reference to a directory (as opposed to something else like a file or a path that does not exist).  ..... More

Print this item

  Why does Python Print return None
Posted by: Steven - Mar-19-2017, 12:58 AM - Forum: Homework - Replies (6)

Hey all. I'm studying for a final. Wondering why using 

print(print('hello') return
Hello
None
Can't wrap my head around it..... More

Print this item

  updating a field of sql table from a variable
Posted by: gray - Mar-18-2017, 11:32 PM - Forum: GUI - Replies (1)

[color=#242729][size=small][font=Arial,]how can i update a field of sql table from a variable not a string? my table name is variabless.this table con..... More

Print this item

  pandas : insert new column
Posted by: vvv - Mar-18-2017, 07:59 PM - Forum: Data Science - Replies (2)

Hi All,
I am trying to create an empty dataframe 'a' and insert slices of raw data from 'df' in to columns in 'a'. I can insert a one new columns and..... More

Print this item

  how to write a code for term that can't begin or end with a stopword
Posted by: desul - Mar-18-2017, 02:33 PM - Forum: Homework - Replies (3)

Hiiiiiiiiiiiiiiiiiiiii,

Need your small help for writing a code for selecting a term that can't begin or end with a stopword....

assume stopword..... More

Print this item

  How to set the window icon with OpenGL GLUT
Posted by: hsunteik - Mar-18-2017, 01:04 PM - Forum: General Coding Help - Replies (3)

I have already successfully created the OpenGL window with glut.
Now,I want to set/change the window icon and taskbar icon,is it possible to do that?..... More

Print this item

  Newbie Doubt
Posted by: arshidkv12 - Mar-18-2017, 12:09 PM - Forum: Web Scraping & Web Development - Replies (8)

Hi,
I am Arshid. I am WordPress plugin developer. I think to start  python programming.
I have one doubt, Can I make extension for django like word..... More

Print this item

  Noobie - IF and Else statement help
Posted by: Jedi - Mar-18-2017, 05:55 AM - Forum: General Coding Help - Replies (3)

Hi There, 

In a nutshell, I have a simple code for a Menu where the user has options to select different menu items from the selection. Certain men..... More

Print this item

  NullFunctionError opengl glutInit
Posted by: hsunteik - Mar-18-2017, 05:41 AM - Forum: General Coding Help - Replies (3)

[python]
from OpenGL.GL import *
from OpenGL.GLUT import *
from OpenGL.GLU import *

window = 0                                             # glu..... More

Print this item

  raising multiple exceptions
Posted by: Skaperen - Mar-18-2017, 03:46 AM - Forum: General Coding Help - Replies (10)

in a function that is to be given a list of tuples i want to raise an exception for an error.  for example each tuple must be of length 2 or 3 and the..... More

Print this item

  Using Generators and their expressions
Posted by: BeerLover - Mar-17-2017, 11:33 PM - Forum: General Coding Help - Replies (3)

I am trying to get my head around generators. I do not really understand the concept of generators and their expressions, however I read what they are..... More

Print this item

  Importing module from outside of the current directory
Posted by: Annie - Mar-17-2017, 10:31 PM - Forum: General Coding Help - Replies (4)

Hi guys,

If I'm in say /home/a
and I want to import a module name "file.h"  in   /home/b/c/d
I tried :


[python]
import sys
sys.path.insert..... More

Print this item

  Error in Python 3.6 and how to limit decimal places
Posted by: Raptor88 - Mar-17-2017, 09:24 PM - Forum: General Coding Help - Replies (6)

Using Python 3.6 and tkinter that comes with it.

My tkinter code:
[python]
for myvalue in range(2,11):
    Radiobutton(rightFrame, text=myvalue*..... More

Print this item

  No option to input
Posted by: Sp00f - Mar-17-2017, 08:37 PM - Forum: General Coding Help - Replies (7)

[Image: Sw4cJfq.png]

Hello, I'm running this with no error. But it isn't giving an option to input.

Can someone explain to..... More

Print this item

  so that I may post
Posted by: Sp00f - Mar-17-2017, 08:35 PM - Forum: Bar - Replies (3)

Saying hello, because I need help.

I need 1 post before I can post a link

Print this item

  Displaying error in QTableview and with Checkbox in Column under macOsX
Posted by: nieselfriem - Mar-17-2017, 03:06 PM - Forum: GUI - Replies (1)

Hi,

I have the following problem.

I create a TableModel and a Delegate Class to display Boolean values in a column with Checkboxes. 
[python]# ..... More

Print this item

  InsecureRequestWarning
Posted by: Debian - Mar-17-2017, 02:00 PM - Forum: General Coding Help - Replies (2)

Hello,

I'm new with python, i have download the plugin check_dell_warranty.py to monitor our DELL servers warranty but when i try to execute the scri..... More

Print this item

  Solution for Python CSV>"Array">Simple +-*/
Posted by: Bass - Mar-17-2017, 10:22 AM - Forum: Data Science - Replies (2)

Hi,

Bashing head against wall about this question and *where* to post it.

1. I would really appreciate some straight forward thoughts on this, l..... More

Print this item

  shoutbox in sub page
Posted by: metulburr - Mar-17-2017, 09:53 AM - Forum: Board - Replies (5)

This was my initial intent when i added this shoutbox....to put it not on the index page, but on a sub page. I finally figured out how based on previo..... More

Print this item

  Parts of speech bigram counter
Posted by: Casper - Mar-17-2017, 05:17 AM - Forum: General Coding Help - Replies (4)

I'm very new to python and was looking for a language that could be used for processing large bodies of text. A friend of mine recommended Python alon..... More

Print this item

  QTreeView branches and their clickable area not coinciding
Posted by: abstracted - Mar-17-2017, 02:28 AM - Forum: GUI - No Replies

I am creating a property editor that controls various document parameters. It is done using implementations of QTreeView, QAbstractItemModel, and QSty..... More

Print this item

  Temperature value code
Posted by: 20AJ0931 - Mar-17-2017, 01:49 AM - Forum: General Coding Help - Replies (10)

Hi! I am new to python and I only know Arduino. I am building a laptop overheating detector and I somehow need to transfer temperature values from the..... More

Print this item

  Conditional Button Press
Posted by: Raudert - Mar-16-2017, 08:54 PM - Forum: General Coding Help - Replies (8)

I am looking to make a while loop break upon button press but I'm not sure how to do so. I assume it would be with a conditional statement but the syn..... More

Print this item

  Which is Faster, List or SQL
Posted by: AceScottie - Mar-16-2017, 06:29 PM - Forum: Data Science - Replies (11)

I have a list of over 150,000 urls.
each time the code runs it selects the next url in the list and then generates a few urls from it.

It then has..... More

Print this item

  OpenCV Install Problem
Posted by: siansoft - Mar-16-2017, 06:00 PM - Forum: General Coding Help - Replies (2)

Smile Hi All

After I download openCV on Windows 10 I run the EXE to extract the file to my C: drive but I get an error saying "Can not open fil..... More

Print this item

  help me!!!!
Posted by: joeyh10 - Mar-16-2017, 04:09 PM - Forum: General Coding Help - Replies (2)

Someone please help with my code 

[python]
users = {}
create = ""

def displayMenu():
create = input("If you want to cr..... More

Print this item

  Launch.json isn't working
Posted by: RemyLeBleau - Mar-16-2017, 03:52 PM - Forum: General Coding Help - Replies (5)

Hey guys,

I am pretty new to coding and am using a MacBook Pro and have downloaded Visual Studio Code.  The problem is when I go to debug what I ha..... More

Print this item

  whats wrong with my code? syntax errors
Posted by: r6lay - Mar-16-2017, 03:34 PM - Forum: Homework - Replies (5)

[color=#333333][size=x-small][font=Aspira, Helvetica, Arial, sans-serif][size=small][font=Aspira, Helvetica, Arial, sans-serif][font=Aspira, Helvetica..... More

Print this item

  Scraping .aspx page
Posted by: Larz60+ - Mar-16-2017, 02:28 PM - Forum: Web Scraping & Web Development - Replies (21)

How the heck do you scrape an .aspx page??
i try to get the page with requests and it seems to be stuck downloading,
or it's trying to download all ..... More

Print this item

  Pi_Var3 Error
Posted by: Raudert - Mar-16-2017, 02:10 PM - Forum: General Coding Help - Replies (2)

So I have been struggling for awhile now trying to display a variable value to a label. I have a loop setup to read an ADC value, translate that value..... More

Print this item

  Regexp that won't match anything
Posted by: Ofnuts - Mar-16-2017, 01:59 PM - Forum: General Coding Help - Replies (4)

Is there a regexp that can't match any string that you throw at it, including the empty string?

(no, this isn't an attempt at ..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  Help with Serial.write in... 18 minutes ago racingsubby racingsubby General Codin...
  Backward compatibility qu... 1 hour ago yutaozhou yutaozhou News and Disc...
  [Tkinter] I’m building a ... 3 hours ago tsgiannis Gribouillis GUI
  [split] print two differe... Today, 05:37 Reema Gribouillis General Codin...
  Data Science Today, 05:27 Oshadha mamta25 Data Science
  Two arguments in input fu... Yesterday, 00:56 Alfredd Pedroski55 General Codin...
  [openpyxl] Set the lockin... 11-07, 11:59 BelleroDev Pedroski55 General Codin...
  New Users Introduce Yours... 11-07, 09:09 Yoriz BelleroDev Bar
  Best book on learning Pyt... 11-07, 06:07 almahdi mamta25 News and Disc...
  Recommend me a Python boo... 11-06, 08:33 woodward mamta25 Data Science
  Code runs perfectly and j... 11-05, 17:56 compuman145 noisefloor General Codin...
Most views
  The best Prog... 578748
  Tutorial Requ... 509528
  Web Scraping ... 441880
  Newbie with P... 385850
  New Users Int... 375476
Most reputation
buran 581
snippsat 510
Larz60+ 452
Gribouillis 362
deanhystad 328
Most replies
  New Users Int... 452
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12103
buran 8195
snippsat 7388
deanhystad 6907
metulburr 5151
Top referrers
Googlepro 23
metulburr 6
python 6
NonEntity 5
buran 3
Newest members
thebigback Today
dimitriwati Today
johnsonlucas83 Today
ColorTig Today
AcoolPurpleOne1863 Today

User Panel Messages

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