Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
python3
- Page 1
OpenAI o3 vs Anthropic Claude 4 for Text Classification & Summarization
Programming
Computer Science
4 Days Ago
by usmanmalik57
[OpenAI](https://openai.com/) and [Anthropic](https://www.anthropic.com/) are two AI giants delivering state-of-the-art large language models for various tasks. In a [previous article](https://www.daniweb.com/programming/computer-science/tutorials/542132/comparing-gpt-4o-vs-claude-3-5-sonnet-for-zero-shot-text-classification), I compared OpenAI GPT…
Re: What is the best AI and Machine Learning course?
Digital Media
Digital Marketing
Search Engine Strategies
1 Week Ago
by Eckert
Hey Dviesh! 👋 Great to see your interest in AI, Machine Learning, and Python development! If you're looking for top Python courses in Jaipur, you might want to check out Samyak IT Solutions, IIHT Jaipur, or Techgyan Jaipur, they offer hands-on training with real-world projects. For online learning, Coursera and Udemy also have some excellent …
What is the best AI and Machine Learning course?
Digital Media
Digital Marketing
Search Engine Strategies
1 Week Ago
by Skill_4
Hay my name is Dviesh, Iam looking for python development course in Jaipur . SO lets me Disceusss best agecny and comapny for leanding python development course in jaipur .
Re: What is the best AI and Machine Learning course?
Digital Media
Digital Marketing
Search Engine Strategies
1 Week Ago
by rproffitt
#Before you go to some course you pay for, did you complete FREE courses such as **https://www.w3schools.com/python/ ?**
Re: How do I make my code jump back to a previous line?
Programming
3 Weeks Ago
by Dani
Organizing code into functions is always important for readability and also to be able to reuse parts of your code as your app gets bigger. Thank you for posting your updated code to share with others :)
Re: How Does Flutter Handle State Management Internally?
Programming
Software Development
3 Weeks Ago
by Temporal
Great topic! When I studied Game Design and Art at UNIAT, we also touched on Flutter and state management, which is key for solid apps. Flutter manages state through its widget tree, with setState() rebuilding parts as needed. For bigger apps, tools like Provider, Riverpod, and BLoC help manage complexity. Provider is simple and good for …
Is anyone using ChatGPT in French for programming tasks?
Programming
1 Week Ago
by kakasi63
Hi everyone, I've recently started exploring ChatGPT in the French language for programming help, and I was surprised at how effective it can be — even when working with frameworks like Laravel or JavaScript. For example, I asked it to generate a Laravel controller with French comments, and the output was both functional and easy to …
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by jassonadder
Hey! Great job getting started with Python—your logic is almost there, just a couple of small fixes needed. The main issue is that you're using the variable timesflipped in your while loop, but it was never initialized. Because of that, the loop never runs properly, and your counters don't change. Here's a corrected version of your code:…
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month 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).
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by woooee
while timesflipped < 100: timesflipped += 1 Use a for loop instead. if coin_flips == 0: And no need to add the == 0. Just *if coin_flips* (i.e. not zero) is enough
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by Reverend Jim
When you want to do a loop a given number of times (e.g. 100) but the loop counter is not used you can do for _ in range(100): # rest of code here
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Months Ago
by usmanmalik57
On April 14, 2025, OpenAI released [GPT-4.1](https://openai.com/index/gpt-4-1/) — a model touted as the new state-of-the-art, outperforming GPT-4o on all major benchmarks. As always, I like to evaluate new LLMs on simple tasks like text classification and summarization to see how they compare with current leading models. In this article, I will…
Integrating OpenAI Web Search API in LangGraph
Programming
Computer Science
1 Month Ago
by usmanmalik57
Large language models are trained on a fixed corpus, and their knowledge is often limited by the documents they are trained on. Techniques like retrieval augmented generation, continuous pre-training, and fine-tuning enhance an LLM's default knowledge. However, these techniques can still not enable an LLM to answer queries that require web …
Hi everyone, I'm Hichem_MG
Community Center
Say Hello!
2 Months 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!
2 Months 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 Month 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.
Hello, I'm Tim Cooke
Community Center
Say Hello!
1 Month Ago
by trcooke
Like Ron McLeod, [who we met yesterday](https://www.daniweb.com/community-center/say-hello/threads/543368/hi-everyone-i-m-ron-mcleod), I'm a moderator and administrator over at the CodeRanch.com forums. I'm a Software Engineer, currently working as a Software Architect for a medical technology company in Belfast, Northern Ireland. We use Java, …
Re: Need Coding Help With A Project
Programming
Software Development
1 Month Ago
by Enzo_3
I was working on a similar assignment where I had to compute the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how to incorporate them meaningfully, but I finally figured it out. Here's how I approached it using Python: from functools import reduce with open('…
Re: Need Coding Help With A Project
Programming
Software Development
1 Month Ago
by Reverend Jim
I don't know why you would use `reduce` and `lambda` when you could just do sum(numbers) And the directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. is self-contradictory as using `map` and `reduce` instead of `sum` does not simplify the design. It …
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months 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: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
> Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
> > When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. > > So did it even give you `print("Waiting for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "__main__": >…
Re: When Speed Replaces Satisfaction in Coding
Community Center
Say Hello!
1 Month Ago
by Reverend Jim
Compare this to making cookies. One person's idea of making cookies is 1. open the bag 2. put the cookies on a plate 3. done The other extreme would involve grinding the flour and harvesting eggs from your own chickens. I prefer something in the middle. I have enjoyed programming as a professional and a hobbyist for more than 45 years, but …
Re: which language do i start leaning in 2025
Programming
Software Development
2 Months Ago
by retseaz77
Great question! In 2025, some of the most practical and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy advantage French – still very relevant in international diplomacy and culture Python (if you meant programming) – still one of the top …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
> Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above new …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by Salem
> When I run the command "python server.py" on the server pc, it held for a second, then released back to the command prompt. So did it even give you `print("Waiting for a connection...")` ? Consider making your server main like this. if __name__ == "__main__": print('Server Begin') …
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months 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 Month Ago
by jassonadder
Hey! You're on the right track with your idea—it’s a great beginner project to practice loops, input, and class methods in Python. Here’s a sample program that does exactly what you're asking. It defines a class with a flipCoin() method, reads in how many times the user wants to flip a coin, prints each result, and then shows the totals at the …
Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day
Hardware and Software
Microsoft Windows
1 Month Ago
by Reverend Jim
Certainly the technology and tools have changed but principles of design and good programming styles have not. Python has, for the most part, replaced (effectively) dead languages like COBOL, and now-niche languages like FORTRAN, but structured programming and modular design are still essential techniques. I have seen too much code written by self-…
Re: Hi everyone, I'm stevejonas
Community Center
Say Hello!
1 Month Ago
by Dani
Hi Steve. Welcome to DaniWeb. What brings you here?
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC