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,931
» Latest member: AndreasMuller22
» Forum threads: 38,722
» Forum posts: 175,501

Full Statistics

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

Latest Threads
HIRE A HACKER FOR CRYPTO ...
Forum: General Coding Help
Last Post: AndreasMuller22
6 minutes ago
» Replies: 0
» Views: 1
HIRE A HACKER FOR CRYPTO ...
Forum: General Coding Help
Last Post: AndreasMuller22
6 minutes ago
» Replies: 0
» Views: 0
403 Error
Forum: Web Scraping & Web Development
Last Post: snippsat
1 hour ago
» Replies: 8
» Views: 2,170
real community
Forum: News and Discussions
Last Post: decuser
2 hours ago
» Replies: 3
» Views: 1,323
variable changing types f...
Forum: General Coding Help
Last Post: Gribouillis
3 hours ago
» Replies: 1
» Views: 121
looking for help
Forum: Bar
Last Post: Azdaghost
5 hours ago
» Replies: 0
» Views: 36
Seeking feedback: dynamic...
Forum: General Coding Help
Last Post: Bona2000
6 hours ago
» Replies: 7
» Views: 2,654
Select Python comment (#)...
Forum: General Coding Help
Last Post: Pedroski55
Yesterday, 11:27 PM
» Replies: 6
» Views: 917
data input while debuggin...
Forum: General Coding Help
Last Post: deanhystad
Yesterday, 03:32 PM
» Replies: 2
» Views: 613
New to Python and Pygame
Forum: Game Development
Last Post: JMcM
Yesterday, 11:25 AM
» Replies: 7
» Views: 1,926

 
  How to get pyhton to identify symbols in a string
Posted by: MemeLord15 - Apr-05-2017, 09:58 AM - Forum: General Coding Help - Replies (4)

Smile

Print this item

  Do all class need constructors?(__init__)
Posted by: hsunteik - Apr-05-2017, 09:57 AM - Forum: General Coding Help - Replies (13)

I know it is all up to the programmer,but do most programmer do 
like this:

[python]
class test():
    def say(message):
        print (message..... More

Print this item

  Symbols in a String
Posted by: MeMeBigBoy - Apr-05-2017, 09:41 AM - Forum: General Coding Help - Replies (4)

I am a student and I am currently working on a password scoring program, I need to find a way to identify whether the password entered (the string) co..... More

Print this item

  Symbol identification in variables
Posted by: Ollie - Apr-05-2017, 09:41 AM - Forum: General Coding Help - Replies (2)

[size=medium][size=small]I am a student working on a password checking program, I need help with identifiying if a variable has symbols ("~`!@#$%^&*()..... More

Print this item

  Pandac_concat
Posted by: yamanda - Apr-05-2017, 07:45 AM - Forum: General Coding Help - Replies (2)

Dear all

I want to combine two different data frames in one so i have a code
[quote]
SUM=pd.concat([SUM_1a, result_F1], join='outer' ,axis=1, ign..... More

Print this item

  'OSError: [Errno 16] Device or resource busy' for ralationship with ds1307
Posted by: gray - Apr-05-2017, 04:59 AM - Forum: General Coding Help - Replies (4)

i want to set time & date by ds1307 IC...I added rtc-ds1307 to /etc/modules my program is
[python]
from RTC_DS1307 import RTC

rtc = RTC()
rtc.se..... More

Print this item

  disable proxy with requests module
Posted by: metulburr - Apr-05-2017, 02:44 AM - Forum: Web Scraping & Web Development - Replies (2)

doing a simple request with the requests module causes the error below. This error is due to me using a proxy for web browsers only. However i dont wa..... More

Print this item

  Testing with Python
Posted by: harrington40 - Apr-05-2017, 01:14 AM - Forum: General Coding Help - Replies (5)

Hell all. I have few questions about developing an automating test for the real-time measuring device.
 The goal is to write a couple of test cases t..... More

Print this item

  Simple Function Call
Posted by: PappaBear - Apr-04-2017, 10:59 PM - Forum: General Coding Help - Replies (2)

Complete Noob to programming.  With that out of the way,  Going into the function does not appear to be happening.

I put a print statement in the "..... More

Print this item

  Beautifulsoup parsing
Posted by: Larz60+ - Apr-04-2017, 09:28 PM - Forum: Web Scraping & Web Development - Replies (7)

line in html:

Output:
<b>Host Software</b> S. Crocker
I want Host software and author separated
i get the title with x.find('b'),

I ..... More

Print this item

  Can't understand the output of this recursion function
Posted by: bigmit37 - Apr-04-2017, 08:52 PM - Forum: General Coding Help - Replies (5)

def f(n):
    if n < 5:
        return n + 1
    
    return (f(n // 2) ,  f(n // 3) ) 
f(100) is leading to an ou..... More

Print this item

  Strings containing both symbols and letters
Posted by: gullidog - Apr-04-2017, 07:32 PM - Forum: General Coding Help - Replies (13)

Hello, I am a student and i need to know how to check if a string contains both symbols and text. Any help would be greatly appreciated.

Print this item

  Traceback Help
Posted by: Low_Ki_ - Apr-04-2017, 06:47 PM - Forum: Game Development - Replies (9)

I have 5 files that tie together to create a simple alien invaders type game. While adding the bullet function I've made a mistake somewhere and canno..... More

Print this item

  Elif syntaxerror
Posted by: James2929 - Apr-04-2017, 02:36 PM - Forum: General Coding Help - Replies (5)

my code here
I have made a Rock Paper Scissors game in python using if elif and else statements. 
However, when I use an elif it co..... More

Print this item

  Create cache script
Posted by: AgatheYou - Apr-04-2017, 08:13 AM - Forum: General Coding Help - Replies (1)

Hi everyone,

I am pretty new to python and I am actually trying to create one of my first script. I would like to create a script that creates a ca..... More

Print this item

  Total beginner question
Posted by: AngelForge - Apr-04-2017, 04:35 AM - Forum: General Coding Help - Replies (8)

Hi,

first of all, I hope I'm in the right section of the forum.


I decided to learn a programming language and some Youtube videos later, I dec..... More

Print this item

  Code Optimization
Posted by: alicarlos13 - Apr-04-2017, 04:03 AM - Forum: Board - Replies (1)

Is there a section that deals with optimization of codes and/or review of large bits of codes.

This can help with people trying to optimize their c..... More

Print this item

  flask
Posted by: Skaperen - Apr-04-2017, 12:46 AM - Forum: Networking - Replies (6)

a friend showed me how he was setting up web pages in flask.  one thing about how this was done bothered me.  every time he added a new page, i..... More

Print this item

  I gotta problem with making argv parameters
Posted by: Bozx - Apr-04-2017, 12:35 AM - Forum: General Coding Help - Replies (3)

[python][color=#333333][size=small][font=monospace,]#!/usr/bin/env python
import socket
import subprocess
import sys
import argparse
from socket ..... More

Print this item

  default messages
Posted by: metulburr - Apr-04-2017, 12:03 AM - Forum: Board - Replies (19)

I added default messages for the forums "general coding help" and "homework" of ....

[python]my code here[ /python]
This is only ..... More

Print this item

  note moderator instead of mod tags
Posted by: metulburr - Apr-03-2017, 11:33 PM - Forum: Board - Replies (7)

I have been playing around with another plugin. Note moderator, which is basically identical to the mod tags we (team members) use. 
There are some t..... More

Print this item

  Python + OpenCV + Tkinter playing video help
Posted by: Hanban - Apr-03-2017, 10:58 PM - Forum: General Coding Help - Replies (1)

Hey, all.
So here's my problem:
I need a GUI to get a live webcam stream from openCV (or just open a video file), pass it to the Tkinter GUI window,..... More

Print this item

  QTimer not activating function after timeout
Posted by: LavaCreeperKing - Apr-03-2017, 09:09 PM - Forum: GUI - No Replies

I need to be able to use the QTimer, but I can't get it to work. It seems to not be calling the function I want it to after the time runs out or it ju..... More

Print this item

  I need help with this code
Posted by: TEST1 - Apr-03-2017, 05:59 PM - Forum: General Coding Help - Replies (2)

Can someone help with this. I need help turning this program from making gifs to taking individual pictures. Thanks.

[python]
#import modules
imp..... More

Print this item

  Graphics py not found
Posted by: vnc - Apr-03-2017, 04:56 PM - Forum: General Coding Help - Replies (13)

Windows 10
Python 3.6

copied graphics.py file from link on website but i get an error message:

Traceback (most recent call last):

[b]..... More

Print this item

  chat
Posted by: metulburr - Apr-03-2017, 04:56 PM - Forum: Board - No Replies

A little info:

IRC pros:
The IRC is off site...meaning if the server goes down, the shoutbox and forums are down, but IRC is still up. User..... More

Print this item

  shoutbox for guests
Posted by: metulburr - Apr-03-2017, 04:38 PM - Forum: Board - Replies (2)

I finally figured out how to edit the plugin to accommodate guests to post in shoutbox. This would allow people having trouble logging in to post ther..... More

Print this item

  Method for pulling in dynamic table data
Posted by: brocq_18 - Apr-03-2017, 03:06 PM - Forum: General Coding Help - Replies (1)

[size=medium]I've created an extensive script which reads text and data from an excel file and produces a pdf report from this. This script will be us..... More

Print this item

  Printing current time
Posted by: ciogergaming - Apr-03-2017, 02:50 PM - Forum: Homework - Replies (3)

I am doing an online course and there is an excercise where I need to print the current time. The question looks like this-

[python]
#Complete the..... More

Print this item

  3D bar chart? plot in Matplotlib?
Posted by: countsimpson - Apr-03-2017, 02:05 PM - Forum: General Coding Help - Replies (4)

Hi Everyone,
   I'm trying to create a nice looking 3d barchart in python matplotlib - but can't find any samples.

[img]http://4.1m.yt/bV4kE5o.png..... More

Print this item

  brute force password from list
Posted by: petru - Apr-03-2017, 01:28 PM - Forum: General Coding Help - Replies (10)

Hello Everyone, I only just signed up to post this question which will be the first of many.
I've only just started using python so I don't have much..... More

Print this item

  NullFunctionError in opengl
Posted by: hsunteik - Apr-03-2017, 07:19 AM - Forum: General Coding Help - Replies (2)

Always when I call an opengl function,it will result in a NullFunctionError:trying to call an undefined function,so I need to check for print( bool(fu..... More

Print this item

  I finsh the basics of python but I'm stuck on how to link code to GUI
Posted by: Qubayel - Apr-03-2017, 06:46 AM - Forum: General Coding Help - Replies (5)

I finsh the basics of python but I'm stuck on how to link code to GUI, any advice or tips ? Or websites that can help me learn the standard way of cre..... More

Print this item

  scripts
Posted by: Skaperen - Apr-03-2017, 02:57 AM - Forum: News and Discussions - Replies (6)

is there anyone else, besides Skaperen, that write their various general purpose command line scripts in Python?   in Python3?  on Linux?

Print this item

  WMI module help?
Posted by: 20AJ0931 - Apr-02-2017, 07:36 PM - Forum: General Coding Help - Replies (5)

I am using Windows 10 Home, 64-bit operating system and have installed python from [ur..... More

Print this item

Forum stats
Latest posts
Topic Date, time  Author Last Sender Forum
  HIRE A HACKER FOR CRYPTO ... 6 minutes ago AndreasMuller22 AndreasMuller22 General Codin...
  HIRE A HACKER FOR CRYPTO ... 6 minutes ago AndreasMuller22 AndreasMuller22 General Codin...
  403 Error 1 hour ago CaptainNewb snippsat Web Scraping ...
  real community 2 hours ago decuser decuser News and Disc...
  variable changing types f... 3 hours ago Azdaghost Gribouillis General Codin...
  looking for help 5 hours ago Azdaghost Azdaghost Bar
  Seeking feedback: dynamic... 6 hours ago Bona2000 Bona2000 General Codin...
  Select Python comment (#)... Yesterday, 23:27 SpongeB0B Pedroski55 General Codin...
  data input while debuggin... Yesterday, 15:32 fred1232 deanhystad General Codin...
  New to Python and Pygame Yesterday, 11:25 JMcM JMcM Game Developm...
  Python Installation issue Yesterday, 11:16 RFHill Dev News and Disc...
Most views
  The best Prog... 575707
  Tutorial Requ... 496883
  Web Scraping ... 439749
  Newbie with P... 383405
  New Users Int... 364857
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
AndreasMuller22 Today
luisshulez6883 Today
KennedyRichadGuerra Today
Williefaree Today
faithsally Today

User Panel Messages

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