Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
python-2
- Page 1
Hello, I'm Tim Cooke
Community Center
Say Hello!
2 Days Ago
by trcooke
… company in Belfast, Northern Ireland. We use Java, JavaScript, TypeScript,
Python
, we have used many of the related tooling for those…
Re: Hello, I'm Tim Cooke
Community Center
Say Hello!
2 Days Ago
by Reverend Jim
Hello and welcome to Daniweb.
Re: Hello, I'm Tim Cooke
Community Center
Say Hello!
2 Days Ago
by John_165
Welcome aboard! I’m also a member of CodeRanch.
Re: Hello, I'm Tim Cooke
Community Center
Say Hello!
1 Day Ago
by Dani
Hi Tim! Welcome to DaniWeb. Thank you so much for taking the time to join us over here.
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Week Ago
by jassonadder
… = 0 timesflipped = 0 while timesflipped < 100: coin_flips = random.randrange(
2
) if coin_flips == 0: coin_heads += 1 else: coin_tails += 1 timesflipped += …heads and tails you get. Also, if you're using
Python
3 (which you probably are), remember to use parentheses with…
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Week Ago
by Dani
> Presumably bumping every "coinflip" post to spam their URL Nothing wrong with that!! I'll take a trillion helpful posts if all someone wants in exchange is a free signature link back to their website (that only shows up for logged in members, so no SEO incentive).
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
3 Weeks Ago
by usmanmalik57
… libraries and modules into our
Python
application. ```
python
import pandas as pd import …subjects] == 1).sum(axis=1) >=
2
] print(f"Filtered Dataset Shape: {filtered_dataset.shape… numbers using the `parse_outputs_to_dataframe()` function below. ```
python
def parse_outputs_to_dataframe(outputs): subjects = ["Computer …
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
1 Week Ago
by usmanmalik57
… The script below imports the required libraries into your
Python
application. ```
python
from typing_extensions import TypedDict from langchain_openai import ChatOpenAI from IPython…()` function to bind the list of tools to the LLM. ```
python
OPENAI_API_KEY = userdata.get('OPENAI_API_KEY') search_tool = {"type": "…
Hi everyone, I'm Hichem_MG
Community Center
Say Hello!
3 Weeks Ago
by Hichem_MG
Hi everyone, I'm Hichem. A web developer,
Python
enthusiast and problem solver. I'm happy to be a member of the DaniWeb community.
Re: Hi everyone, I'm Hichem_MG
Community Center
Say Hello!
3 Weeks Ago
by Reverend Jim
Welcome to Daniweb. What type of
Python
projects have you done?
Hi everyone, I'm stevejonas
Community Center
Say Hello!
1 Week Ago
by stevejonas
I am Steve Jonas, a technical blogger at EmizenTech, a reputed software development company that deals in Magento
2
solutions, Salesforce, and
Python
development.
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
… Server**: - On the target computer, run `server.py`: ```bash
python
server.py ```
2
. **Run the Client**: - On your controlling computer, run `client….168.0.
2
. I inputed the server IP into the sample code. I turned off all firewalls and installed
python
on both…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
> > When I run the command "
python
server.py" on the server pc, it held for …; i can ping 192.168.0.
2
successfully, but as i said disappointingly the
python
server.py command didnt output any text… %PATH% and the output did not have the word "
python
" anywhere. Even if i run the setup and ticked…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
… has nothing to do with web. It is just a
python
script but it still doesnt work. Do you have any…
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by Salem
> When I run the command "
python
server.py" on the server pc, it held for … prompt on your client machine, type `ping 192.168.0.
2
`
Re: Cannot run exe from asp.net
Programming
Web Development
3 Weeks Ago
by lennyli
I fixed the problem by ensuring the path is including
python
. Also on the server I must run pip install Thank you all All working now
Re: Java Coin Flip Program
Programming
Software Development
1 Week Ago
by jassonadder
… beginner project to practice loops, input, and class methods in
Python
. Here’s a sample program that does exactly what you…
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
1 Week Ago
by Reverend Jim
… but principles of design and good programming styles have not.
Python
has, for the most part, replaced (effectively) dead languages like…
Re: Hi everyone, I'm stevejonas
Community Center
Say Hello!
1 Week Ago
by Dani
Hi Steve. Welcome to DaniWeb. What brings you here?
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Week Ago
by asadalig
Flutter manages state using a widget tree and immutable widgets. When an app’s state needs to be updated, Flutter takes care of rebuilding only the UI components that require change when setState() is called on stateful widgets. This allows the framework to re-render the important widgets and not all the widgets on the screen. For more …
Re: Which Python project should I use?
Programming
Software Development
2 Months Ago
by Reverend Jim
Using wxPython for your GUI elements will make it more portable to other platforms. wxPython also renders the elements in the target platform's native style. Usimg wxGlade (also free) to design the layout will make things much easier than doing it all by hand.
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…started/quickstart) to access the Fireworks API via the
Python
library. ```
python
from fireworks.client import Fireworks import os import pandas as… `generate_summary()` function returns average ROUGE scores for all the summaries. ```
python
def generate_summary(model, sleep_time=0): results = [] model_name, model_client = model…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
2 Months Ago
by simplixi
…-the-scenes stuff. * **Django:** If you’re more comfortable with
Python
, Django is your friend. It’s like a big toolbox…
Re: which language do i start leaning in 2025
Programming
Software Development
1 Month Ago
by retseaz77
… advantage French – still very relevant in international diplomacy and culture
Python
(if you meant programming) – still one of the top languages…
How Does Flutter Handle State Management Internally?
Programming
Software Development
1 Month Ago
by James_228
Hey Flutter devs I’ve been learning Flutter app development for cross-platform app development and I’m starting to get into more advanced stuff — but one thing that still feels a bit unclear is state management. I know there are several options like: setState() Provider Riverpod Bloc GetX, MobX, etc. But I’m curious: How …
Re: python
Programming
Software Development
15 Years Ago
by tomleo
Python
is really easy, I would defiantly start learning it. For … shouldn't be to hard to transition from C++ to
Python
, I didn't think it was. Java is also great…
Python webpage -please help
Programming
Software Development
12 Years Ago
by robinclarke95
… help Hi I am very new in
python
programming.I am trying make a basic webpage where I … description of the url like"search engine". Using
python
script I will add that url and description in dbm… a link in the browser.I am not sure how
python
print that url as a link from its dbm database…
Python for Pentesters!
Programming
Software Development
12 Years Ago
by tony75
… in university. I would like to know how to use
python
for penetration testing. Is there any courses or site to…? We study more Perl for IT forensics but I love
python
. securitytube.net have one course and Im already member there….. As I see in daniweb there are many
python
experts Why those experts not open the Courses (Not Free…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC