- By Guillaume
- Weight: 1
- Auto QA review: 0.0/106 mandatory & 0.0/15 optional
- Altogether: 0.0%
- Mandatory: 0.0%
- Optional: 0.0%
- Calculation: 0.0% + (0.0% * 0.0%) == 0.0%
Read or watch:
- Object Oriented Programming (Read everything until the paragraph "Inheritance" (excluded))
- Object-Oriented Programming (Please be careful: in most of the following paragraphs, the author shows the way you should not use or write a class, in order to help you better understand some concepts and how everything works in Python 3. Make sure you read only the following paragraphs: "General Introduction," "First-class Everything," "A Minimal Class in Python," "Attributes," "Methods," "The
__init__
Method," "Data Abstraction, Data Encapsulation, and Information Hiding," "__str__
- and__repr__
-Methods," "Public- Protected- and Private Attributes," & "Destructor") - Class and Instance Attributes
- classmethods and staticmethods
- Properties vs. Getters and Setters (Mainly the last part "Public instead of Private Attributes")
- str vs repr
At the end of this project, you are expected to be able to explain to anyone, without the help of Google:
- Why Python programming is awesome
- What is OOP
- "first-class everything"
- What is a class
- What is an object and an instance
- What is the difference between a class and an object or instance
- What is an attribute
- What are and how to use public, protected and private attributes
- What is
self
- What is a method
- What is the special
__init__
method and how to use it - What is Data Abstraction, Data Encapsulation, and Information Hiding
- What is a property
- What is the difference between an attribute and a property in Python
- What is the Pythonic way to write getters and setters in Python
- What are the special
__str__
and__repr__
methods and how to use them - What is the difference between
__str__
and__repr__
- What is a class attribute
- What is the difference between a object attribute and a class attribute
- What is a class method
- What is a static method
- How to dynamically create arbitrary new attributes for existing instances of a class
- How to bind attributes to object and classes
- What is and what does contain
__dict__
of a class and of an instance of a class - How does Python find the attributes of an object or class
- How to use the
getattr
function
- Allowed editors:
vi
,vim
,emacs
- All your files will be interpreted/compiled on Ubuntu 20.04 LTS using python3 (version 3.8.5)
- All your files should end with a new line
- The first line of all your files should be exactly
#!/usr/bin/python3
- A
README.md
file, at the root of the folder of the project, is mandatory - Your code should use the pycodestyle (version 2.7.*)
- All your files must be executable
- The length of your files will be tested using
wc
Show
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write an empty class Rectangle
that defines a rectangle:
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 0-main.py
#!/usr/bin/python3
Rectangle = __import__('0-rectangle').Rectangle
my_rectangle = Rectangle()
print(type(my_rectangle))
print(my_rectangle.__dict__)
guillaume@ubuntu:~/0x08$ ./0-main.py
<class '0-rectangle.Rectangle'>
{}
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
0-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 0-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 1-main.py
#!/usr/bin/python3
Rectangle = __import__('1-rectangle').Rectangle
my_rectangle = Rectangle(2, 4)
print(my_rectangle.__dict__)
my_rectangle.width = 10
my_rectangle.height = 3
print(my_rectangle.__dict__)
guillaume@ubuntu:~/0x08$ ./1-main.py
{'_Rectangle__height': 4, '_Rectangle__width': 2}
{'_Rectangle__height': 3, '_Rectangle__width': 10}
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
1-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 1-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter is equal to0
- if
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 2-main.py
#!/usr/bin/python3
Rectangle = __import__('2-rectangle').Rectangle
my_rectangle = Rectangle(2, 4)
print("Area: {} - Perimeter: {}".format(my_rectangle.area(), my_rectangle.perimeter()))
print("--")
my_rectangle.width = 10
my_rectangle.height = 3
print("Area: {} - Perimeter: {}".format(my_rectangle.area(), my_rectangle.perimeter()))
guillaume@ubuntu:~/0x08$ ./2-main.py
Area: 8 - Perimeter: 12
--
Area: 30 - Perimeter: 26
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
2-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 2-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
: (see example below)- if
width
orheight
is equal to 0, return an empty string
- if
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 3-main.py
#!/usr/bin/python3
Rectangle = __import__('3-rectangle').Rectangle
my_rectangle = Rectangle(2, 4)
print("Area: {} - Perimeter: {}".format(my_rectangle.area(), my_rectangle.perimeter()))
print(str(my_rectangle))
print(repr(my_rectangle))
print("--")
my_rectangle.width = 10
my_rectangle.height = 3
print(my_rectangle)
print(repr(my_rectangle))
guillaume@ubuntu:~/0x08$ ./3-main.py
Area: 8 - Perimeter: 12
##
##
##
##
<3-rectangle.Rectangle object at 0x7f92a75a2eb8>
--
##########
##########
##########
<3-rectangle.Rectangle object at 0x7f92a75a2eb8>
guillaume@ubuntu:~/0x08$
Object address can be different
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
3-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 3-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
: (see example below)- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
(see example below)- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 4-main.py
#!/usr/bin/python3
Rectangle = __import__('4-rectangle').Rectangle
my_rectangle = Rectangle(2, 4)
print(str(my_rectangle))
print("--")
print(my_rectangle)
print("--")
print(repr(my_rectangle))
print("--")
print(hex(id(my_rectangle)))
print("--")
# create new instance based on representation
new_rectangle = eval(repr(my_rectangle))
print(str(new_rectangle))
print("--")
print(new_rectangle)
print("--")
print(repr(new_rectangle))
print("--")
print(hex(id(new_rectangle)))
print("--")
print(new_rectangle is my_rectangle)
print(type(new_rectangle) is type(my_rectangle))
guillaume@ubuntu:~/0x08$ ./4-main.py
##
##
##
##
--
##
##
##
##
--
Rectangle(2, 4)
--
0x7f09ebf7cc88
--
##
##
##
##
--
##
##
##
##
--
Rectangle(2, 4)
--
0x7f09ebf7ccc0
--
False
True
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
4-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 4-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
:- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
- Print the message
Bye rectangle...
(...
being 3 dots not ellipsis) when an instance ofRectangle
is deleted - You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 5-main.py
#!/usr/bin/python3
Rectangle = __import__('5-rectangle').Rectangle
my_rectangle = Rectangle(2, 4)
print("Area: {} - Perimeter: {}".format(my_rectangle.area(), my_rectangle.perimeter()))
del my_rectangle
try:
print(my_rectangle)
except Exception as e:
print("[{}] {}".format(e.__class__.__name__, e))
guillaume@ubuntu:~/0x08$ ./5-main.py
Area: 8 - Perimeter: 12
Bye rectangle...
[NameError] name 'my_rectangle' is not defined
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
5-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 5-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Public class attribute
number_of_instances
:- Initialized to
0
- Incremented during each new instance instantiation
- Decremented during each instance deletion
- Initialized to
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
:- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
- Print the message
Bye rectangle...
(...
being 3 dots not ellipsis) when an instance ofRectangle
is deleted - You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 6-main.py
#!/usr/bin/python3
Rectangle = __import__('6-rectangle').Rectangle
my_rectangle_1 = Rectangle(2, 4)
my_rectangle_2 = Rectangle(2, 4)
print("{:d} instances of Rectangle".format(Rectangle.number_of_instances))
del my_rectangle_1
print("{:d} instances of Rectangle".format(Rectangle.number_of_instances))
del my_rectangle_2
print("{:d} instances of Rectangle".format(Rectangle.number_of_instances))
guillaume@ubuntu:~/0x08$ ./6-main.py
2 instances of Rectangle
Bye rectangle...
1 instances of Rectangle
Bye rectangle...
0 instances of Rectangle
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
6-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 6-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Public class attribute
number_of_instances
:- Initialized to
0
- Incremented during each new instance instantiation
- Decremented during each instance deletion
- Initialized to
- Public class attribute
print_symbol
:- Initialized to
#
- Used as symbol for string representation
- Can be any type
- Initialized to
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character(s) stored inprint_symbol
:- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
- Print the message
Bye rectangle...
(...
being 3 dots not ellipsis) when an instance ofRectangle
is deleted - You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 7-main.py
#!/usr/bin/python3
Rectangle = __import__('7-rectangle').Rectangle
my_rectangle_1 = Rectangle(8, 4)
print(my_rectangle_1)
print("--")
my_rectangle_1.print_symbol = "&"
print(my_rectangle_1)
print("--")
my_rectangle_2 = Rectangle(2, 1)
print(my_rectangle_2)
print("--")
Rectangle.print_symbol = "C"
print(my_rectangle_2)
print("--")
my_rectangle_3 = Rectangle(7, 3)
print(my_rectangle_3)
print("--")
my_rectangle_3.print_symbol = ["C", "is", "fun!"]
print(my_rectangle_3)
print("--")
guillaume@ubuntu:~/0x08$ ./7-main.py
########
########
########
########
--
&&&&&&&&
&&&&&&&&
&&&&&&&&
&&&&&&&&
--
##
--
CC
--
CCCCCCC
CCCCCCC
CCCCCCC
--
['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']
['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']
['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']['C', 'is', 'fun!']
--
Bye rectangle...
Bye rectangle...
Bye rectangle...
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
7-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 7-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Public class attribute
number_of_instances
:- Initialized to
0
- Incremented during each new instance instantiation
- Decremented during each instance deletion
- Initialized to
- Public class attribute
print_symbol
:- Initialized to
#
- Used as symbol for string representation
- Can be any type
- Initialized to
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
:- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
- Print the message
Bye rectangle...
(...
being 3 dots not ellipsis) when an instance ofRectangle
is deleted - Static method
def bigger_or_equal(rect_1, rect_2):
that returns the biggest rectangle based on the area-
rect_1
must be an instance ofRectangle
, otherwise raise aTypeError
exception with the messagerect_1 must be an instance of Rectangle
-
rect_2
must be an instance ofRectangle
, otherwise raise aTypeError
exception with the messagerect_2 must be an instance of Rectangle
-
Returns
rect_1
if both have the same area value
-
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 8-main.py
#!/usr/bin/python3
Rectangle = __import__('8-rectangle').Rectangle
my_rectangle_1 = Rectangle(8, 4)
my_rectangle_2 = Rectangle(2, 3)
if my_rectangle_1 is Rectangle.bigger_or_equal(my_rectangle_1, my_rectangle_2):
print("my_rectangle_1 is bigger or equal to my_rectangle_2")
else:
print("my_rectangle_2 is bigger than my_rectangle_1")
my_rectangle_2.width = 10
my_rectangle_2.height = 5
if my_rectangle_1 is Rectangle.bigger_or_equal(my_rectangle_1, my_rectangle_2):
print("my_rectangle_1 is bigger or equal to my_rectangle_2")
else:
print("my_rectangle_2 is bigger than my_rectangle_1")
guillaume@ubuntu:~/0x08$ ./8-main.py
my_rectangle_1 is bigger or equal to my_rectangle_2
my_rectangle_2 is bigger than my_rectangle_1
Bye rectangle...
Bye rectangle...
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
8-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
mandatory
Score: 0.00% (Checks completed: 0.00%)
Write a class Rectangle
that defines a rectangle by: (based on 8-rectangle.py
)
- Private instance attribute:
width
:- property
def width(self):
to retrieve it - property setter
def width(self, value):
to set it:-
width
must be an integer, otherwise raise aTypeError
exception with the messagewidth must be an integer
-
if
width
is less than0
, raise aValueError
exception with the messagewidth must be >= 0
-
- property
- Private instance attribute:
height
:- property
def height(self):
to retrieve it - property setter
def height(self, value):
to set it:-
height
must be an integer, otherwise raise aTypeError
exception with the messageheight must be an integer
-
if
height
is less than0
, raise aValueError
exception with the messageheight must be >= 0
-
- property
- Public class attribute
number_of_instances
:- Initialized to
0
- Incremented during each new instance instantiation
- Decremented during each instance deletion
- Initialized to
- Public class attribute
print_symbol
:- Initialized to
#
- Used as symbol for string representation
- Can be any type
- Initialized to
- Instantiation with optional
width
andheight
:def __init__(self, width=0, height=0):
- Public instance method:
def area(self):
that returns the rectangle area - Public instance method:
def perimeter(self):
that returns the rectangle perimeter:- if
width
orheight
is equal to0
, perimeter has to be equal to0
- if
print()
andstr()
should print the rectangle with the character#
:- if
width
orheight
is equal to 0, return an empty string
- if
repr()
should return a string representation of the rectangle to be able to recreate a new instance by usingeval()
- Print the message
Bye rectangle...
(...
being 3 dots not ellipsis) when an instance ofRectangle
is deleted - Static method
def bigger_or_equal(rect_1, rect_2):
that returns the biggest rectangle based on the area-
rect_1
must be an instance ofRectangle
, otherwise raise aTypeError
exception with the messagerect_1 must be an instance of Rectangle
-
rect_2
must be an instance ofRectangle
, otherwise raise aTypeError
exception with the messagerect_2 must be an instance of Rectangle
-
Returns
rect_1
if both have the same area value
-
- Class method
def square(cls, size=0):
that returns a new Rectangle instance withwidth == height == size
- You are not allowed to import any module
guillaume@ubuntu:~/0x08$ cat 9-main.py
#!/usr/bin/python3
Rectangle = __import__('9-rectangle').Rectangle
my_square = Rectangle.square(5)
print("Area: {} - Perimeter: {}".format(my_square.area(), my_square.perimeter()))
print(my_square)
guillaume@ubuntu:~/0x08$ ./9-main.py
Area: 25 - Perimeter: 20
#####
#####
#####
#####
#####
Bye rectangle...
guillaume@ubuntu:~/0x08$
No test cases needed
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
9-rectangle.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
#advanced
Score: 0.00% (Checks completed: 0.00%)
Chess grandmaster Judit Polgár, the strongest female chess player of all time
The N queens puzzle is the challenge of placing N non-attacking queens on an N×N chessboard. Write a program that solves the N queens problem.
- Usage:
nqueens N
- If the user called the program with the wrong number of arguments, print
Usage: nqueens N
, followed by a new line, and exit with the status1
- If the user called the program with the wrong number of arguments, print
- where N must be an integer greater or equal to
4
- If N is not an integer, print
N must be a number
, followed by a new line, and exit with the status1
- If N is smaller than
4
, printN must be at least 4
, followed by a new line, and exit with the status1
- If N is not an integer, print
- The program should print every possible solution to the problem
- One solution per line
- Format: see example
- You don't have to print the solutions in a specific order
- You are only allowed to import the
sys
module
Read: Queen, Backtracking
julien@ubuntu:~/0x08. N Queens$ ./101-nqueens.py 4
[[0, 1], [1, 3], [2, 0], [3, 2]]
[[0, 2], [1, 0], [2, 3], [3, 1]]
julien@ubuntu:~/0x08. N Queens$ ./101-nqueens.py 6
[[0, 1], [1, 3], [2, 5], [3, 0], [4, 2], [5, 4]]
[[0, 2], [1, 5], [2, 1], [3, 4], [4, 0], [5, 3]]
[[0, 3], [1, 0], [2, 4], [3, 1], [4, 5], [5, 2]]
[[0, 4], [1, 2], [2, 0], [3, 5], [4, 3], [5, 1]]
julien@ubuntu:~/0x08. N Queens$
Repo:
- GitHub repository:
alx-higher_level_programming
- Directory:
0x08-python-more_classes
- File:
101-nqueens.py
Done? Help Check your code Ask for a new correction Get a sandbox QA Review
Copyright © 2021 Holberton Inc, All rights reserved.