Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 45 online users. » 0 Member(s) | 40 Guest(s) Applebot, Bing, Google, AOL
|
Latest Threads |
Weird failure in Selenium
Forum: General Coding Help
Last Post: glestwid
5 hours ago
» Replies: 0
» Views: 34
|
print does not open conso...
Forum: General Coding Help
Last Post: Axel_Erfurt
7 hours ago
» Replies: 1
» Views: 57
|
Fred Economic Data API
Forum: Web Scraping & Web Development
Last Post: Trickety
Yesterday, 03:05 PM
» Replies: 3
» Views: 2,526
|
create ocr to detect lice...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 01:58 PM
» Replies: 2
» Views: 86
|
Parse Markdown / get the ...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 01:56 PM
» Replies: 6
» Views: 187
|
Error: cannot mix str wit...
Forum: General Coding Help
Last Post: Joliekeva
Oct-01-2025, 03:05 AM
» Replies: 4
» Views: 2,045
|
Integer Factorization Too...
Forum: Code sharing
Last Post: buran
Sep-30-2025, 07:43 AM
» Replies: 2
» Views: 457
|
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
Sep-30-2025, 12:21 AM
» Replies: 2
» Views: 1,088
|
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: noisefloor
Sep-29-2025, 05:45 PM
» Replies: 6
» Views: 1,162
|
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
Sep-29-2025, 12:59 PM
» Replies: 8
» Views: 842
|
|
|
making code more readable |
Posted by: Skaperen - Nov-20-2019, 03:03 AM - Forum: Bar
- No Replies
|
 |
sometimes i find code with one statement bodies after if or for or else or elif on the same line easier to read. that's because there are fewer lines..... More
|
|
|
Recursion |
Posted by: leodavinci1990 - Nov-20-2019, 01:29 AM - Forum: General Coding Help
- Replies (7)
|
 |
[python]def power(n,p):
""" Return n to the power p. Works only for positive integers """
return n*power(n,p-1)
if __name__ == '__main__':
pri..... More
|
|
|
bar graph |
Posted by: prateekshaw - Nov-19-2019, 10:33 PM - Forum: General Coding Help
- No Replies
|
 |
[python]
import matplotlib.pyplot as plt; plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt
x_axis_value = ('A', 'B', 'C', 'D'..... More
|
|
|
Help with Unit Tests |
Posted by: pdub787 - Nov-19-2019, 04:35 PM - Forum: Homework
- Replies (3)
|
 |
Hi There! When unittest'ing a simple program that prompts for a first and last name, I'm getting a "repl process died unexpectedly" return.
[pyth..... More
|
|
|
beginner help |
Posted by: ksoni - Nov-19-2019, 02:41 PM - Forum: General Coding Help
- Replies (2)
|
 |
I just started python with THONNY IDE.
I have a sample code for remove 'n' th character.
Tested it works fine, then i edit the code for remove '..... More
|
|
|
modify script. |
Posted by: MuhammadTalha - Nov-19-2019, 11:43 AM - Forum: General Coding Help
- Replies (15)
|
 |
Hi i want to modify python script, so it can not look for a specific file.
In my case i want it to not look for .dvscf1.
Regards
Muhamma..... More
|
|
|
wordsearch |
Posted by: rontoto - Nov-19-2019, 11:23 AM - Forum: General Coding Help
- Replies (2)
|
 |
Hi, I have got a problem in my searchword. Everything runs properly. Output writes word, coordinates and direction, but i need, that output have same ..... More
|
|
|
Classification of Request |
Posted by: PythonLearner703 - Nov-19-2019, 04:14 AM - Forum: Data Science
- Replies (8)
|
 |
Python: How to categorize the request in different categories for example in 3 categories based on any 3 ex. aa, bb, cc (any):, using KMeans or any ot..... More
|
|
|
Class Problem |
Posted by: scratchmyhead - Nov-19-2019, 02:40 AM - Forum: General Coding Help
- Replies (3)
|
 |
I am writing a python program exactly the way my course instructor has and when I try to run on my end, I get the following error: AttributeError: 'T..... More
|
|
|
|