Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to study data structure with python for my upcoming test in 2 days.
I have studied data structure like stack,queue,linked-list,trees,graphs in isolation without any language.
Also, I have learned python very well.
But, I have an exam on Implementation of data structure with python.
I searched on youtube hoping to get a 6-8 hour freeCodeCamp video but I didn't get.
Neither was there any course from any other channel.
So, please if you know of any course please provide the link for it.
Any please give only the link and no review or description whatsoever.
I don't want the answer to be a chit-chat which would destroy the reputation of stack-overflow.
I would love if the course is 6-8 hours in length and its level be intermediate to advance.
Even if your course doesn't fit in upper mentioned criteria, please do mention the course.
It might prove helpful.
Course from any site will do. Only, condition is it should be free and good content.
Here is what you want. However i dont know if this a good use of stackoverflow.
https://www.udemy.com/course/python-data-structures-a-to-z/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have just started trying to learn Python (windows) via online guides/courses etc (I read that this was a good language to start in). I was just wondering if there are any specific texts you would advise to aid me. As I said in the title I am a complete beginner in programming so any help would be great.
Thanks in Advance
My greatest advice for new developers is to be efficient at learning and be headed in the right direction. Most of the people drive straight into learning the language and remembering syntax and all kinds of aspects about the language, instead of actually doing any programming. While it's essential to know the fundamentals of a language to do any projects, it also can be wasteful in terms of productivity.
So, to say this shortly, learn the core fundamentals and immediately start creating projects that you always wanted to make. No matter how hard your end goal is going to be you just need to split into parts that you will be able to compete and learn on the way of making it.
To say it even more shortly, learn how to drive the car, not the car itself
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
So I recently got interested in learning to program. With some light research, I found out that python seems to be a good language and a nice language to start with.
But I have some difficulty in choosing how to start learning it as a simple google search
will turn up with hundreds of different paid guides written tutorials video tutorials and i have no way of knowing if one might be bad or good.
As such I would love to hear some people recommend courses/videos or any other way to get started. Thanks for any help
For popular Stackoverflow tags, you can look at the tag information page to find resources to learn more
https://stackoverflow.com/tags/python/info
Just a suggestion
When I started with python, I found codeacademy's course on python https://www.codecademy.com/learn/learn-python-3 really helpful for the basics. You can practice online and the small tasks in the course are really helpful in understanding the basics.
Once you touch base with the basics of python then you can pick a project like tic-tac-toe, snake or a simple calculator to improve your skills. Take up small projects after finishing the course and you'll find yourself more comfortable with the language.
Although this is how I started, I bet answers from people expert in the domain might be more insightful, Cheers!
Out of many video resources which I've watched so far, this one was one of the best out there by Tim Buchalka:
Python the complete python developer course
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I need to import this python project to Unity3d. How can i do that? Based on my search, i see that there are plugins like this. However, i need to perform this tasks without using any plugin? How should i do that, i am experienced in Unity but i have no python experience? Can i get .dlls from python project so that i can use the .dlls in Unity. Or should i do something else?
If someone lead me, i'd appereciate.
I'm not sure if you can. I know that's not what you're looking for, and don't let me discourage you, but start looking for another answer. I've been trying for a while now, and even with plugins the best I could do cost about $40, and that guy spent about a year working on it. Maybe try manually converting it to C#?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm having a really hard time finding a good comprehensive source for Mechanize's documentation. Even the main documentation on mechanize's site isn't really that great: it only seems to list examples.
Is there a more formal place for documentation where I can see lists of classes and methods for this module? I'm a bit new to python, so maybe there's a simple answer for this.
More specifically I need a good source of information for mechanize.Browser(), which I've only been able to find information on through random questions on Stack Overflow.
UPDATED:
How about
https://github.com/python-mechanize/mechanize
prior answer: A google search turned up the below, courtesy of one Joe. He parsed the source through pydoc and posted the generated results. Nice one, Joe.
http://joesourcecode.com/Documentation/mechanize0.2.5/
http://joesourcecode.com/Documentation/mechanize0.2.5/mechanize._mechanize.Browser-class.html
If you're not happy with mechanize's site, then I'm afraid the best you can do is look at the examples you've found or at the code from the library ifself.
Regarding mechanize.Browser if you take a look at the code, then you'll see:
class Browser(UserAgentBase):
class UserAgentBase(_opener.OpenerDirector):
class OpenerDirector(urllib2.OpenerDirector):
So, for starters, you can assume that a mechanize.Browser object is just a specialized urllib2.OpenerDirector.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I heard SubmitFeed API is for adding products. But i didn't find any example.
By the way, i need a Python solution.
Thanks a lot.
The general gist of it is you use SubmitFeed to send your product list. Then you must check the status of the submission. Once the submission is complete you can then get the results. You have to repeat these steps for images, pricing and availability.
It's a bit of a pain to get started with it, Amazon supply a LOT of useful information but it is everywhere and not particulary very easy to understand at first. Experiment with just adding products to your inventory and go from there. Make use of the scratchpad too, very handy tool indeed.
As for python I can't help you there I'm afraid but I think there is sample code within the python download available from Amazon.