Exemplo n.º 1
0
        print('Your Result is Poor')

    else:
     print('Awsome ' + str(score) + '/' + str(len(questions)))

run_test(questions)




from Student import Student

Student1 = Student('Specky', 'Computer Science', 4.5)
Student2 = Student('Purva', 'Information Technology', 3.5)

print(Student2.on_honor_roll())

print(Student1.is_in_criteria())



from Chef import Chef
from ItaliyanChef import ItaliyanChef
from FrenchChef import FrenchChef
from PersianChef import PersianChef
myItaliyanChef = ItaliyanChef()

myItaliyanChef.make_Rissoto()
myFrenchChef = FrenchChef()

myFrenchChef.make_Creambrulle()
Exemplo n.º 2
0
from Students import Student

Student1 = Student("Nick-Bwalley", 122790, "DBIT", 2.9)
Student2 = Student("Drew Mc-Intyre", 122994, "DBIT", 3.6)
Student3 = Student("Seth Rollins", 122799, "DBIT", 3.9)

print(Student1.on_honor_roll())
print(Student2.on_honor_roll())
print(Student3.on_honor_roll())