| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 20,296
» Latest member: nicos18
» Forum threads: 38,795
» Forum posts: 175,886
Full Statistics
|
| Online Users |
There are currently 531 online users. » 0 Member(s) | 522 Guest(s) Bing, AOL, Google, Mojeek, AOL, Facebook Dev
|
| Latest Threads |
My regex function is not ...
Forum: General Coding Help
Last Post: Pedroski55
3 hours ago
» Replies: 1
» Views: 54
|
silent deployment Python ...
Forum: News and Discussions
Last Post: Larz60+
Yesterday, 11:51 AM
» Replies: 1
» Views: 60
|
data fetching for indian ...
Forum: Web Scraping & Web Development
Last Post: Pedroski55
Yesterday, 02:50 AM
» Replies: 6
» Views: 231
|
PyQt5 - Get a parameter f...
Forum: GUI
Last Post: deanhystad
Nov-24-2025, 02:18 PM
» Replies: 5
» Views: 122
|
Brazil Python Help to aut...
Forum: Jobs
Last Post: MileHigh303
Nov-21-2025, 08:30 PM
» Replies: 0
» Views: 84
|
My goal to be hired worki...
Forum: News and Discussions
Last Post: mamta25
Nov-21-2025, 06:15 AM
» Replies: 4
» Views: 1,518
|
[SOLVED] [BeautifulSoup] ...
Forum: Web Scraping & Web Development
Last Post: Winfried
Nov-20-2025, 02:10 PM
» Replies: 2
» Views: 170
|
How to Implement Real-Tim...
Forum: Web Scraping & Web Development
Last Post: ankitsharma32
Nov-20-2025, 06:48 AM
» Replies: 0
» Views: 80
|
How to put my game loop i...
Forum: Game Development
Last Post: SledgeNE
Nov-20-2025, 04:59 AM
» Replies: 11
» Views: 6,140
|
Help with running PvZ Fus...
Forum: Game Development
Last Post: SledgeNE
Nov-20-2025, 04:46 AM
» Replies: 2
» Views: 4,323
|
|
|
| Data Visulization |
|
Posted by: srikanthpdpl - Sep-23-2019, 10:39 AM - Forum: Data Science
- No Replies
|
 |
Here is my code
[python]
import pandas as pd
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
# ..... More
|
|
|
| Consolidating code |
|
Posted by: jhartc - Sep-22-2019, 08:40 PM - Forum: Data Science
- No Replies
|
 |
I have the following code:
[python]
# Load the Pandas libraries with alias 'pd'
import pandas as pd
import numpy as np
# Read data from file 'file..... More
|
|
|
| Call a function when switching layouts |
|
Posted by: 4096 - Sep-22-2019, 07:39 PM - Forum: GUI
- No Replies
|
 |
I am writing a flashcard program in Python 3.7 using tkinter. I have many interfaces, like one for selecting a file, and one for reviewing cards, one ..... More
|
|
|
| loop through range until reach size and exclude specific symbol |
|
Posted by: pino88 - Sep-22-2019, 02:53 PM - Forum: General Coding Help
- Replies (3)
|
 |
[inline]
string = "ABC_DEF_GH__ILMN_OPQ__RSTUVZ"
index = 14
for i in string:
print([i-5],[i-4],[i-3],[i-2],[i-1],[i],[i+1],[i+2],[i+3],[i+4],[i+..... More
|
|
|
| Newbie error |
|
Posted by: dezed - Sep-22-2019, 02:27 PM - Forum: General Coding Help
- Replies (4)
|
 |
Im newb to python, can someone help me?
this error
can't multiply sequence by non-int of type 'str'
my code
[python]
n,T,P=input("input n, T, P..... More
|
|
|
| Multiple Passwords |
|
Posted by: NotPythonQueen - Sep-21-2019, 06:38 PM - Forum: Homework
- Replies (17)
|
 |
I am able to get it to prompt one password, but not all 3. Here is an example of my code:
[python]import getpass
thislist = ["Sun", "Moon", "Sta..... More
|
|
|
| data science |
|
Posted by: peepeepoopoo - Sep-21-2019, 03:56 PM - Forum: Data Science
- Replies (1)
|
 |
I have a dataframe with billions of stars, and i would like to narrow it down using equations. I need to find which stars are moving at escape velocit..... More
|
|
|
| Splitting tuples |
|
Posted by: kasper1903 - Sep-21-2019, 12:36 PM - Forum: Homework
- Replies (3)
|
 |
Hi guys.
Hope you can help
I need to split my tuples into separate columns. This is what I got
[python]
import csv
with open('geyserDat..... More
|
|
|
| MD5 Hashing |
|
Posted by: Evil_Patrick - Sep-21-2019, 07:29 AM - Forum: General Coding Help
- Replies (1)
|
 |
Does anyone know how to do it vice versa?
[python]
import hashlib
password= input("Enter your Password: ")
result = hashlib.md5(password.enc..... More
|
|
|
|