Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
General Tech QA/Testing 2 years ago
Posted on 16 Aug 2022, this text provides information on QA/Testing related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
I'm searching for the fastest way to know if a value exists in a list (a list with millions of values in it) and what its index is? I know that all values in the list are unique as in this example.
The first method I try is (3.8sec in my real code):
a = [4,2,3,1,5,6] if a.count(7) == 1: b=a.index(7) "Do something with variable b"
The second method I try is (2x faster:1.9sec on my real code):
a = [4,2,3,1,5,6] try: b=a.index(7) except ValueError: "Do nothing" else: "Do something with variable b"
Proposed methods from Stackoverflow user (2.74sec on my real code):
a = [4,2,3,1,5,6] if 7 in a: a.index(7)
In my real code, the first method takes 3.81sec and the second method takes 1.88sec. It's a good improvement but:
I'm a beginner with Python/scripting and I want to know if a faster way exists to do the same things and save more processing time?
More specific explication for my application:
In the blender API I can access a list of particles:
particles = [1,2,3,4...etc.]
From there, I can access a particle's location:
particles[x].location = [x,y,z]
And for each particle I test if a neighbour exists by searching each particle location like so:
if [x+1,y,z] in particles.location "find the identity of this neighbour particle in x:the particle's index in the array" particles.index([x+1,y,z])
7 in a
Clearest and fastest way to do it.
You can also consider using a set, but constructing that set from your list may take more time than faster membership testing will save. The only way to be certain is to benchmark well. (this also depends on what operations you require)
set
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
General Tech 10 Answers
General Tech 7 Answers
General Tech 3 Answers
General Tech 9 Answers
General Tech 2 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.