Tuesday, April 20, 2021

Magic Square - Python Code

Write a CODE in Python to make a Magic Sqaure

'''
6 1 8
7 5 3
2 9 4
'''
M=[[0,0,0],[0,0,0],[0,0,0]]

for i in M:
  print(i)

Start=1
R=0;C=1

# Fill in the First Number
M[R][C]=Start

# Fill in the rest of the values in Sequence 2,3,...
while True:
  TR=(R-1) if R>0 else 2
  TC=(C-1) if C>0 else 2
  if M[TR][TC]!=0:
    R=R+1
  else:
    R=TR
    C=TC
  Start+=1
  M[R][C]=Start
  if Start==9:
    break
print("-"*10)
for i in M:
  print(i)


'''
12  2  16
14 10   6
 4 18   8
'''
M=[[0,0,0],[0,0,0],[0,0,0]]

for i in M:
  print(i)

Start=2
R=0;C=1

# Fill in the First Value of the Sequence
M[R][C]=Start

# Fill in the rest of the value of the Sequence 4,6,8,...
while True:
  TR=(R-1) if R>0 else 2
  TC=(C-1) if C>0 else 2
  if M[TR][TC]!=0:
    R=R+1
  else:
    R=TR
    C=TC
  Start+=2
  M[R][C]=Start
  if Start==18:
    break
    
print("-"*10)
for i in M:
  print(i)

4 comments:

  1. Looking for Top Computer Science Engineering Colleges in Chennai? If yes, then hindustanuniv.ac.in is one of the best B.Tech Computer Science & Engineering college with very Good Infrastructure, Faculties, Laboratory and Placement guaranteed. Admission Open Apply Now!

    ReplyDelete
  2. I’m Артур Борис a resident/citizen of the Republic Of Russian. I’m 42 years of age, an entrepreneur/businessman. I once had difficulties in financing my project/business, if not for a good friend of mine who introduced me to Mr Pedro to get a loan worth $250,000 USD from his company. When I contacted them it took just five working days to get my loan process done and transferred to my account. Even with a bad credit history, they still offer their service to you. They also offer all kinds of loans such as business loans, home loans, personal loans, car loans. I don’t know how to thank them for what they have done for me but God will reward them according to his riches in glory. If you need an urgent financial assistance contact them today via email  pedroloanss@gmail.com 
    Whatsapp Number: +1 8632310632

    ReplyDelete
  3. Scandinavian Dining Chairs

    Scandinavian dining chairs can be described as a style movement that is characterized by minimalism, simplicity and utility.

    From cushions for maximum comfort, to wood for a modern and elegant design, our Scandinavian dining chairs selection includes designs which will fit seamlessly with your dining arrangement.

    ReplyDelete
  4. Swivel Furniture
    I have read this article completely and i must say this article is full of valuable information which i have never heard of.
    https://www.swiveluk.com/uk/chairs/eames-lounge-chairs.html

    ReplyDelete