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,303
» Latest member: IFDA123
» Forum threads: 38,798
» Forum posts: 175,906

Full Statistics

Online Users
There are currently 40 online users.
» 1 Member(s) | 29 Guest(s)
Bing, Google, AOL, Facebook Dev, Applebot, AOL, snippsat

Latest Threads
No new line from print in...
Forum: General Coding Help
Last Post: snippsat
38 minutes ago
» Replies: 4
» Views: 108
Python is not working on ...
Forum: General Coding Help
Last Post: noisefloor
8 hours ago
» Replies: 4
» Views: 144
Help with Serial.write in...
Forum: General Coding Help
Last Post: Larz60+
Today, 04:44 AM
» Replies: 8
» Views: 665
Can I develop a live vide...
Forum: Web Scraping & Web Development
Last Post: mamta25
Yesterday, 04:48 AM
» Replies: 6
» Views: 7,811
silent deployment Python ...
Forum: News and Discussions
Last Post: Larz60+
Nov-26-2025, 09:58 PM
» Replies: 3
» Views: 143
Proposal for PEP
Forum: News and Discussions
Last Post: Gribouillis
Nov-26-2025, 03:53 PM
» Replies: 1
» Views: 125
My regex function is not ...
Forum: General Coding Help
Last Post: perfringo
Nov-26-2025, 08:47 AM
» Replies: 3
» Views: 208
best way to learn python
Forum: News and Discussions
Last Post: ichsanputr
Nov-26-2025, 04:40 AM
» Replies: 6
» Views: 3,217
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Nov-25-2025, 02:50 AM
» Replies: 6
» Views: 317
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 209

 
  set marker goto marker??
Posted by: tsmspace - Jan-19-2019, 07:42 PM - Forum: News and Discussions - Replies (5)

Has it ever been considered for python to allow for a goto command??
instead of line numbers, one could place named or numbered markers, and then th..... More

Print this item

  code help to convert log file to csv format
Posted by: bmunagala - Jan-19-2019, 07:01 PM - Forum: General Coding Help - Replies (3)

Need to convert a logfile that will have some information into a csv format.

Sample Data:[output]
Info type: PERSON_NAME; Count: 25
Info type: L..... More

Print this item

  Python connect to Sybase IQ
Posted by: FORTITUDE - Jan-19-2019, 06:28 PM - Forum: General Coding Help - Replies (1)

Hi Team,

I am trying to use sqlanydb Python API to invoke a stored procedure deployed in Sybase IQ. I am calling this stored procedure successfully..... More

Print this item

  Finding and storing all string with character A at middle position
Posted by: Pippi - Jan-19-2019, 06:11 PM - Forum: Homework - Replies (2)

Hi,

I need to find all strings that have particular characters at a certain index and store those words in a list. Eg; I want to find all strings ..... More

Print this item

  Lots of text objects?
Posted by: MuntyScruntfundle - Jan-19-2019, 03:50 PM - Forum: Game Development - Replies (1)

Hi there.

Im writing a monitor app, it gathers loads of data and gives a graphical representation. And, I'd like to add certain numbers as text. ..... More

Print this item

  bytecodes and virtual machine?
Posted by: insearchofanswers87 - Jan-19-2019, 03:44 PM - Forum: General Coding Help - Replies (1)

I thought I saw a reference somewhere that, like Java, Python (CPython?) "compiles" to bytecodes which are executed by a virtual machine.

Is that t..... More

Print this item

  export PDF to excel or csv
Posted by: prem2179 - Jan-19-2019, 03:34 PM - Forum: General Coding Help - Replies (1)

[python]

I want to extract tables from PDF and extract it to CSV. i have tried:

1. tabula: It gives error: java` command is not found from this ..... More

Print this item

  for n in range(x,y) ??
Posted by: MuntyScruntfundle - Jan-19-2019, 03:31 PM - Forum: General Coding Help - Replies (2)

Why does
>> for n in range(1,5)
give 4 iterations?

>> for n in range(0,5)
give 4 iterations?

>> for n in tange(1,6)
give 5 iterations?

Su..... More

Print this item

  # of bytes used to store a Unicode character
Posted by: insearchofanswers87 - Jan-19-2019, 02:46 PM - Forum: General Coding Help - Replies (3)

I read somewhere that Python 3 uses 2 or 4 byte Unicode characters depending on how the particular implementation was built.

1. Does Python 3 alway..... More

Print this item

  AttributeError: 'int' object has no attribute 'reindex'
Posted by: vladponcea - Jan-19-2019, 02:36 PM - Forum: General Coding Help - Replies (3)

I got stuck on this error with my code. Basically I am using openpyxl and tkinter to create a program that stores data in an excel file. Every time I ..... More

Print this item

  for loop just work one
Posted by: Faruk - Jan-19-2019, 01:05 PM - Forum: General Coding Help - Replies (1)

Hello guys. I have a python script for run omxplayer. My purpose this: I have four .mp4 file. I want run these one by one. This fr loop in my script ..... More

Print this item

  problem returning values
Posted by: Naito - Jan-19-2019, 12:58 PM - Forum: General Coding Help - Replies (7)

Hi, i made iam a total beginner and i made this code for learning purposes, this code let you calculate your IQ out of 5 (n/5) by the average marks yo..... More

Print this item

  Occasional error when taking an item off a queue
Posted by: Wiggy - Jan-19-2019, 12:37 PM - Forum: General Coding Help - Replies (1)

I am using a queue to send commands to a GPS module. The commands are AT codes with 0,1 or 2 parameters. The command causing the problem is the +CCLK?..... More

Print this item

  Gui -> Dateime -> grid
Posted by: pynewby - Jan-19-2019, 10:52 AM - Forum: GUI - Replies (2)

Hello all:

I've spent a better part of two days before coming here..
I'm just trying to put the current date in a .grid

I'm wondering if ther..... More

Print this item

  How to fill empty values with mean
Posted by: SriRajesh - Jan-19-2019, 09:19 AM - Forum: General Coding Help - Replies (4)

I have below DataFrame,

1.0  2.1
1.5  
     0.9
4.8   
1.7  9.0
2.0  1.0

8.7  2.9
1.8  1.1
     0.6 
2.0  3.2
I wa..... More

Print this item

  ProbEnthought Canopylems with
Posted by: kendias - Jan-19-2019, 02:36 AM - Forum: Web Scraping & Web Development - Replies (3)

I am having problems with Enthought Canopy, whatever my code I get error e.g. for this program I get
return [l]
^
IndentationError: unexpected ind..... More

Print this item

  Framework Selection
Posted by: magikarp45 - Jan-19-2019, 01:03 AM - Forum: Web Scraping & Web Development - Replies (1)

I am wanting to create a website that can run a python file and display the code and output from a file uploaded to the site. What web frameworks shou..... More

Print this item

  Extending my text file word count ranker and calculator
Posted by: Drone4four - Jan-19-2019, 12:50 AM - Forum: General Coding Help - Replies (8)

I am playing with large plain text files like Alice and Wonderland and trying to rank most commonly occurring words. Naturally, you’d expect to encoun..... More


Attached Files

.txt   Alice.txt (Size: 159.97 KB / Downloads: 650)
Print this item

  help needed with python launcher
Posted by: fallenlight - Jan-19-2019, 12:36 AM - Forum: General Coding Help - Replies (3)

hello,
i need help with python launcher on the latest version when i try to run any script it just open the python terminal and close it immediately ..... More

Print this item

  pip install xlrd error
Posted by: sandy - Jan-18-2019, 11:50 PM - Forum: General Coding Help - Replies (3)

Hi, I am trying to install XLRD PACKAGE but I am getting below error plz can you help me in troubleshooting:


C:\>pip install xlrd
Collecting xlr..... More

Print this item

  How's my list comprehension?
Posted by: Clunk_Head - Jan-18-2019, 09:59 PM - Forum: Code sharing - Replies (4)

I'm just having fun, but can it be done better?
[python]oob = lambda name: ''.join([letter if letter not in "aeiouAEIOU" else "oob" for letter in nam..... More

Print this item

  pyenv Simple Python Version Management
Posted by: snippsat - Jan-18-2019, 08:33 PM - Forum: Python Installation and Execution - Replies (1)

Here gone look at setting up pyenv.
Will be using for Mint 19,work same for Ubuntu 18,for other look at [ur..... More

Print this item

  assigning index
Posted by: 3Pinter - Jan-18-2019, 07:04 PM - Forum: General Coding Help - Replies (6)

Basicly I have a certain amount of positions (1-3) which can be either True or False.

I want the function I use to get the decent index value.

..... More

Print this item

  Manipulating an Excel Workbook
Posted by: Stanimal - Jan-18-2019, 06:49 PM - Forum: General Coding Help - Replies (4)

Hello! I currently have an excel spreadsheet that is showing me data but I need to be able to manipulate that data, find exceptions, and suggest corre..... More

Print this item

  list problem
Posted by: nouk4 - Jan-18-2019, 06:29 PM - Forum: General Coding Help - Replies (1)

I have this task that I have a list A and a list B and I have to make a list C that would have the thinks that A has but if B has them so I should not..... More

Print this item

  Begginning
Posted by: arsenal58 - Jan-18-2019, 06:11 PM - Forum: General Coding Help - Replies (1)

So I was wondering what sort of things I can do with Python. I have Pycharm and have read quite a few things on how to use programming. I was just won..... More

Print this item

  Getting started
Posted by: mba_110 - Jan-18-2019, 05:23 PM - Forum: General Coding Help - No Replies

Hi everyone,

Hope you guys are doing fine

I am trying to develop desktop application for (HR & Accounting combined) I want help on following stu..... More

Print this item

  QTableWidget cell validation
Posted by: littleGreenDude - Jan-18-2019, 03:52 PM - Forum: GUI - Replies (1)

Recommended approach for cell validation on dynamic table.

The scenario: I have a QDialog where based on different dropdown selections 1 or more ..... More

Print this item

  In place of py2exe (for GNU/Linux systems) and MultiOS executables (Yes)
Posted by: Lachu - Jan-18-2019, 03:46 PM - Forum: News and Discussions - Replies (5)

Windows have py2exe, but no other OSes. Recently, I discovered how to create hybrid Windows 10/Linux scripts. In fact, It's cmd/bash scripts. Way to a..... More

Print this item

  pyjama - frame every x seconds?
Posted by: MuntyScruntfundle - Jan-18-2019, 03:41 PM - Forum: General Coding Help - Replies (2)

Hi folks.

I've worked with a couple of game engines before where this would be pretty easy, but I can't find a good example of updating the display..... More

Print this item

  Exception has occurred error
Posted by: jamshaid1997 - Jan-18-2019, 03:01 PM - Forum: Homework - Replies (1)

I am trying to create a disk image analyzer one of the things i want to do is be able to print the product image name however i seem to have come acro..... More

Print this item

  Cant seem to load my image file
Posted by: jamshaid1997 - Jan-18-2019, 02:54 PM - Forum: General Coding Help - No Replies

im trying to load a image file so that my program could outout he results of the last logon timeand date but i seem to be getting a error




..... More

Print this item

  showing results in TKInter as Vertical List
Posted by: diegoctn - Jan-18-2019, 01:59 PM - Forum: GUI - Replies (4)

Hi guys, I am trying to put the result in a label in TKInter but, I am an absolute beginner, I can find the rught way. Practically I'd like to have a ..... More

Print this item

  Accessing Files via Mobaxterm
Posted by: Omer123 - Jan-18-2019, 01:40 PM - Forum: General Coding Help - Replies (1)

[align=left]Hello, I have problems with accessing files through a code via mobaxterm:
The code takes a txt file as an input, and outputs an output tx..... More

Print this item

  __init__ function arguments
Posted by: CoderMan - Jan-18-2019, 12:41 PM - Forum: General Coding Help - Replies (4)

Hello,

I am trying to make an __init__ function's argument be the previous argument of that function divided by 2.

[python]
class item:
d..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  No new line from print in... 38 minutes ago Lou snippsat General Codin...
  Python is not working on ... 8 hours ago lary_p noisefloor General Codin...
  Help with Serial.write in... Today, 04:44 racingsubby Larz60+ General Codin...
  Can I develop a live vide... Yesterday, 04:48 mtrkhan mamta25 Web Scraping ...
  silent deployment Python ... 11-26, 21:58 Bummibaer Larz60+ News and Disc...
  Proposal for PEP 11-26, 15:53 matt Gribouillis News and Disc...
  My regex function is not ... 11-26, 08:47 Moltar1997 perfringo General Codin...
  best way to learn python 11-26, 04:40 dutch ichsanputr News and Disc...
  data fetching for indian ... 11-25, 02:50 drakhsin Pedroski55 Web Scraping ...
  PyQt5 - Get a parameter f... 11-24, 14:18 Ninja2112 deanhystad GUI
  Brazil Python Help to aut... 11-21, 20:30 MileHigh303 MileHigh303 Jobs
Most views
  The best Prog... 579457
  Tutorial Requ... 512610
  Web Scraping ... 442321
  Newbie with P... 386373
  New Users Int... 380659
Most reputation
buran 581
snippsat 511
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+ 12113
buran 8196
snippsat 7391
deanhystad 6916
metulburr 5151
Top referrers
Googlepro 23
python 6
metulburr 6
NonEntity 5
buran 3
Newest members
IFDA123 Today
TimTom420 Yesterday
cruisesfares Yesterday
SNR Yesterday
Jonathan Yesterday

User Panel Messages

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