Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6800487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:58:31+00:00 2026-05-26T18:58:31+00:00

I have two strings in python that I have converted to lists: Seq1 =

  • 0

I have two strings in python that I have converted to lists:

Seq1 = [x1,x2,x3,x4]

Seq2 = [y1,y2,y3,y4]

The strings are the same length and are composed of only the letters 'a', 'c', 'g', and 'u'.

Then I created an empty matrix len(Seq1) by len(Seq2):

a = numpy.zeros(shape=len(Seq1),len(Seq2))

Next, I want to compare the list values and place a 1 if the values match and 0 if they don’t. The value should be placed in the relevant array element
i.e.

if seq1[0] == seq[0]:
    a[0,0] = [1]
else:
    a[0,0] = [0]

# repeat for all the values.
print a

I had a loop that was working but it only filled in the first row and column. I can see that it’s a problem with a range function like Seq1[i] == Seq2[j] but I can’t figure it out.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T18:58:31+00:00Added an answer on May 26, 2026 at 6:58 pm

    A compact way to write the loop is:

    import itertools
    
    for i1,i2 in itertools.product(xrange(len(Seq1)), xrange(len(Seq2))):
        a[i1,i2] = Seq1[i1] == Seq2[i2]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have two strings that are identical in value, is it guaranteed that
Let's say I have two strings like this: XABY XBAY A simple regex that
Lets say that I have two strings: The System is in halt state. The
Let's say I have two same strings inside an ArrayList... is there a way
I have run into a problem joining two strings in Python. I have some
Does Python have a fast function for doing a natural sort between two strings?
I have two strings str1 and str2 . Check both of them and see
I have two strings in a java program, which I want to mix in
I have two strings, one a key and one a value, which I would
I have two strings String s1=426F62; String s2=457665; The strings are in hex representation.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.