class Vector:
def __init__(self, i, j, k):
self.i = i
self.j = j
self.k = k
def print(self):
print(self.i,"i","+",self.j,"j","+",self.k,"k")
def add(self,b):
x = self.i + b.i
y = self.j + b.j
z = self.k + b.k
add = Vector(x, y, z)
return add
def setup():
a = Vector(5,3,4)
b = Vector(2,1,6)
c = a.add(b)
a.print()
b.print()
c.print()
assert c.x == 7 and c.y == 4 and c.z == 10
setup()
วันอาทิตย์ที่ 8 พฤศจิกายน พ.ศ. 2558
สมัครสมาชิก:
ส่งความคิดเห็น (Atom)
Link Video Presentation Resort Managemant System Project.
Video Presentation Resort Managemant System Project. จัดทำโดย พากษ์เสียง: คุณาสิน ทองมณี 5801012620011 ลำดับภาพ: สุพิชชา ศรีศิริ...
-
- 1NF หรือ Fisrt Normal Form มีเงื่อนไขอยู่ว่า ต้องไม่มีคอลลัมน์ใดในตารางที่มีค่ามากกว่า 1 ค่า หรือที่เรียกว่า Atomic ซึ่งหมายถึง ข้อมูลที่...
-
https://docs.google.com/spreadsheets/d/10Y6o-h8dAAKf7MHTtGvQDBJuzGkAx_X0WYVgj2nB8v0/edit?usp=sharing จากภาพจะเห็นว่า - เก...
ไม่มีความคิดเห็น:
แสดงความคิดเห็น