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,930
» Latest member: luisshulez6883
» Forum threads: 38,720
» Forum posts: 175,499

Full Statistics

Online Users
There are currently 49 online users.
» 0 Member(s) | 43 Guest(s)
Bing, Google, AOL, Mojeek, Apple

Latest Threads
403 Error
Forum: Web Scraping & Web Development
Last Post: snippsat
5 hours ago
» Replies: 8
» Views: 2,258
real community
Forum: News and Discussions
Last Post: decuser
6 hours ago
» Replies: 3
» Views: 1,398
variable changing types f...
Forum: General Coding Help
Last Post: Gribouillis
8 hours ago
» Replies: 1
» Views: 193
looking for help
Forum: Bar
Last Post: Azdaghost
9 hours ago
» Replies: 0
» Views: 61
Seeking feedback: dynamic...
Forum: General Coding Help
Last Post: Bona2000
11 hours ago
» Replies: 7
» Views: 2,734
Select Python comment (#)...
Forum: General Coding Help
Last Post: Pedroski55
Sep-14-2025, 11:27 PM
» Replies: 6
» Views: 990
data input while debuggin...
Forum: General Coding Help
Last Post: deanhystad
Sep-14-2025, 03:32 PM
» Replies: 2
» Views: 680
New to Python and Pygame
Forum: Game Development
Last Post: JMcM
Sep-14-2025, 11:25 AM
» Replies: 7
» Views: 2,020
Python Installation issue
Forum: News and Discussions
Last Post: Dev
Sep-14-2025, 11:16 AM
» Replies: 4
» Views: 15,915
New to the field
Forum: News and Discussions
Last Post: Larz60+
Sep-14-2025, 08:15 AM
» Replies: 1
» Views: 573

 
  Creating a graph with ranges
Posted by: Chris1986 - Apr-20-2017, 09:52 AM - Forum: Data Science - Replies (3)

Hello, 

I need help to find a way to visualize the a graph with the following data:
..... More

Print this item

  "Last post" - go to first new post
Posted by: Kebap - Apr-20-2017, 09:17 AM - Forum: Board - Replies (4)

So when I click on "Last post" next to a thread name on a sub-forum's thread-list, I will be taken to that thread's page at the exact point where the ..... More

Print this item

  socket server with SSL accepting unencrypted data
Posted by: kopite - Apr-20-2017, 08:31 AM - Forum: Networking - No Replies

Hi all,

I'm new here so hope I dont break any rules :)

I have a socket server up and running using SSL and select to deal with connections.

E..... More

Print this item

  Changing Variables within Variables?
Posted by: dave925 - Apr-20-2017, 05:38 AM - Forum: General Coding Help - Replies (9)

How do I make variables within variables modifiable?

y = '1'
x = 'hello'+y
y = '2'

If I print <x>, it will only give me  'hello1' not 'hello2'..... More

Print this item

  change to home directory
Posted by: Skaperen - Apr-20-2017, 04:05 AM - Forum: General Coding Help - Replies (4)

how to change the current directory to the home directory, in python?  if i have os.chdir(home) then where to get home from?

Print this item

  Convert String to Datetime Object
Posted by: tkj80 - Apr-20-2017, 03:44 AM - Forum: General Coding Help - Replies (2)

Hi, 

I have the following

myList[0][0]
Output:
'02/28/2017 21:01:00'
type(myList[0][0])
[out..... More

Print this item

  fun with hangman!
Posted by: Low_Ki_ - Apr-20-2017, 02:03 AM - Forum: Game Development - Replies (7)

In the middle of creating a text-base hangman game, something came up and I wont be able to finish if for a while but I have a basic version down if a..... More

Print this item

  New to Coding, help please?!
Posted by: zepel - Apr-20-2017, 01:20 AM - Forum: Homework - Replies (6)

Write a python program that prompts the user to enter in their age. Convert the keyboard input into an integer using the int( ) function and store the..... More

Print this item

  pdf sms alternating conversation style
Posted by: sdcaliber - Apr-20-2017, 01:18 AM - Forum: General Coding Help - Replies (4)

I started this project on my own.  a way to learn python...
The goal:
To develop a script in python that will intake mbox file, parse it, sor..... More

Print this item

  Nested for loops with numbers
Posted by: Liquid_Ocelot - Apr-19-2017, 10:01 PM - Forum: Homework - Replies (7)

Hey guys so I am running into a problem with my code:

Basically I need to write a code that prompts for two numbers (Limit and Copies) and then wri..... More

Print this item

  barcodes scanner for kivy
Posted by: metulburr - Apr-19-2017, 09:41 PM - Forum: News and Discussions - Replies (15)

Does anyone know of another bar code scanner for Kivy?

I tried using this one but i get a ke..... More

Print this item

  Date for Parking price PyQt5
Posted by: vbv - Apr-19-2017, 08:53 PM - Forum: General Coding Help - No Replies

Hi,
I'm writing project Parking meter in PyQt5, 
I tried something like that: 

[python]
# -*- coding: utf-8 -*-



# Form implementation gen..... More

Print this item

  'module' object is not callable
Posted by: lilCasio - Apr-19-2017, 06:05 PM - Forum: Game Development - Replies (2)

white = pygame.color(255,255,255) 
TypeError: 'module' object is not callable

When I run the code that happens.

Print this item

  Attach sentiment to each word in a list of tuples
Posted by: Casper - Apr-19-2017, 05:49 PM - Forum: Data Science - Replies (3)

Hello.
The input to the below two functions are a list of string sentences delimited by a comma from a csv file. Each list represents negative and po..... More

Print this item

  socket server help
Posted by: abrew132 - Apr-19-2017, 05:30 PM - Forum: Networking - Replies (1)

i have a server&client, but idk if i can connect to the server even if i use the client.py from another mac.

server 
[python]
# Tcp Chat server
..... More

Print this item

  how to get the list of databases to a variable using pymongo?
Posted by: dvsrk563 - Apr-19-2017, 04:29 PM - Forum: General Coding Help - Replies (1)

I'm pretty new to python programming & mongo aswell...how can i get the list of databases from a mongo instance into a variable using pymongo? 

tha..... More

Print this item

  Closing Modal Window in QT
Posted by: nieselfriem - Apr-19-2017, 03:32 PM - Forum: GUI - No Replies

Hello,

 I create a modal dialog in PyQT5 in this way:

[python]
from PyQt5 import QtCore, QtGui, QtWidgets

class FirmUi_Dialog(object):


..... More

Print this item

  What key shall i use if I want to execute this object
Posted by: sylas - Apr-19-2017, 02:22 PM - Forum: General Coding Help - Replies (6)

Python_Learning_Machine is an enormous pdf. I am lost there. Maybe Wavyk, that gave me this object (not file)will tell me what key I shall use. I trie..... More

Print this item

  Reading multiple raw_inputs
Posted by: bindo - Apr-19-2017, 06:51 AM - Forum: General Coding Help - Replies (5)

Hello all,

My first post here. Newbie to python and I want to improve the below code mainly for learning purpose. Let me first post it and then exp..... More

Print this item

  The most commonly used IDE?
Posted by: Aliasing - Apr-19-2017, 01:20 AM - Forum: GUI - Replies (6)

I am a newcomer to python. I need to ask some professional advice. What kind of the integrated development environments is the most commonly used to d..... More

Print this item

  Anaconda - Using 32Bit library on 64Bit Windows
Posted by: Bass - Apr-18-2017, 07:02 PM - Forum: General Coding Help - Replies (1)

Hi,

I am coming up against a problem when trying to install libraries on Conda running on 64 Bit Windows 10.

PackageNotFoundError: Package missi..... More

Print this item

  browser tab linked with unread posts counter
Posted by: metulburr - Apr-18-2017, 05:28 PM - Forum: Board - Replies (20)

i modified the unread post plugin to link its counter to the browser tab. So if you have 1 unread post, it should show [inline](1) Python Forum[/inlin..... More

Print this item

  Summer programmer needed to teach camp Tampa, Florida MOSI
Posted by: MOSI - Apr-18-2017, 04:55 PM - Forum: Jobs - No Replies

MOSI, Museum of Science & Industry, is looking for someone local to teach Python Game Programming, as well as some other game programming, summer camp..... More

Print this item

  help with replacing charactersdef fix(block): alf = ['a', 'b', 'c', ' in a string
Posted by: Marshall_99 - Apr-18-2017, 01:43 PM - Forum: General Coding Help - Replies (9)

I want to take a string and replace every letter in the string with the second to next letter in the alphabet. eg(a => c, b => d). My code changes the..... More

Print this item

  Programmers font
Posted by: sparkz_alot - Apr-18-2017, 01:25 PM - Forum: Bar - Replies (14)

** SPOILER ALERT, NOT A PYTHON QUESTION ** Smile

As I've gotten older and the eyesight is not what it used to be, I felt the need for a better..... More

Print this item

  Trying to simulate different file write speed
Posted by: tbaror - Apr-18-2017, 11:56 AM - Forum: General Coding Help - Replies (4)

Hello All,

I am trying to write a code that simulate write file stream with the control on speed throughput (40Mbit/s ,50Mbit/s etc ...) , and using ..... More

Print this item

  Are Udemy courses worth to pursue?
Posted by: prakashkumar78 - Apr-18-2017, 09:22 AM - Forum: News and Discussions - Replies (12)

I am a newbie to python learning. I want to learn it from the beginning. Local courses are priced around $1000. Is Udemy a good option?

Print this item

  Code Review?
Posted by: PappaBear - Apr-18-2017, 06:06 AM - Forum: General Coding Help - Replies (9)

I'm back.  I have my first  _working_ python script! Woot!  It takes a Cisco ASA config, and converts certain aspects (network objects, services objec..... More

Print this item

  abstract data structures
Posted by: Skaperen - Apr-18-2017, 04:38 AM - Forum: News and Discussions - Replies (9)

in my C programming i implemented a data structure that i regularly used, similar to how a dictionary is used in Python.  but it had some additional f..... More

Print this item

  List Comprehension to exclude first row
Posted by: tkj80 - Apr-18-2017, 02:37 AM - Forum: General Coding Help - Replies (5)

Hi,

I have a list:

mylist = [ [header1, header2, header3], [1,2,3], [4,5,6]]
how could I use list comprehension to create a ..... More

Print this item

  List Indices Must Be Integers, Not Str.
Posted by: Pramerios - Apr-18-2017, 12:23 AM - Forum: General Coding Help - Replies (4)

The following code SHOULD report the number of times that the word "fizz" appears inside of the list GroceryItems. However, I continually receive an e..... More

Print this item

  New reply
Posted by: Larz60+ - Apr-17-2017, 11:22 PM - Forum: Board - Replies (9)

New reply working like post edit
How, if you were the last poster to a thread, do you really start
a new reply? Clicking the new reply still appends..... More

Print this item

  Error in loops, new to Python
Posted by: jhall710 - Apr-17-2017, 10:42 PM - Forum: Homework - Replies (20)

[color=#242729][size=small][font=Arial,]
[size=small]I just recently got involved with trying to learn python and am actually trying to teach myself ..... More

Print this item

  boolean operator question
Posted by: smw10c - Apr-17-2017, 09:00 PM - Forum: Data Science - Replies (6)

I hope you are all having a good day. Why does the following code work (where dictframe is a DataFrame)

dictframe[(dictframe['population']>1) & (di..... More

Print this item

  The most outrageous moments of my career
Posted by: volcano63 - Apr-17-2017, 08:42 PM - Forum: Bar - Replies (27)

Hi, folks.
This is a question for people who have (had) a misfortune Tongue  of programming for the living. I was wondering whether you'd like to..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  403 Error 5 hours ago CaptainNewb snippsat Web Scraping ...
  real community 6 hours ago decuser decuser News and Disc...
  variable changing types f... 8 hours ago Azdaghost Gribouillis General Codin...
  looking for help 9 hours ago Azdaghost Azdaghost Bar
  Seeking feedback: dynamic... 11 hours ago Bona2000 Bona2000 General Codin...
  Select Python comment (#)... 09-14, 23:27 SpongeB0B Pedroski55 General Codin...
  data input while debuggin... 09-14, 15:32 fred1232 deanhystad General Codin...
  New to Python and Pygame 09-14, 11:25 JMcM JMcM Game Developm...
  Python Installation issue 09-14, 11:16 RFHill Dev News and Disc...
  New to the field 09-14, 08:15 Polybunny Larz60+ News and Disc...
  [Tkinter] Too much space ... 09-14, 02:34 RonR deanhystad GUI
Most views
  The best Prog... 575737
  Tutorial Requ... 496931
  Web Scraping ... 439774
  Newbie with P... 383434
  New Users Int... 364949
Most reputation
buran 581
snippsat 508
Larz60+ 452
Gribouillis 362
deanhystad 327
Most replies
  New Users Int... 451
  [book] Variou... 188
  CKEditor / Ri... 100
  moving from t... 95
  Free keys and... 91
Top posters
Larz60+ 12087
buran 8174
snippsat 7367
deanhystad 6893
metulburr 5151
Top referrers
Googlepro 23
NonEntity 6
python 6
metulburr 6
buran 3
Newest members
luisshulez6883 Yesterday
KennedyRichadGuerra Yesterday
Williefaree Yesterday
faithsally Yesterday
compuman145 Yesterday

User Panel Messages

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