232k views
5 votes
Fill in the missing term.

from raftClass ___________ *

# main program that uses rafts
myRaft = raft(30)
print(myRaft)

1 Answer

5 votes

Answer:

import

Step-by-step explanation:

The language being used in this code is Python. The from tag in python is used to import code from other files and is completed with the import tag, while the * symbol indicates that all the information in that class/file is imported. Therefore the complete code would be the following...

from raftClass import *

# main program that uses rafts

myRaft = raft(30)

print(myRaft)

User Chaosaffe
by
3.5k points