Skip to content
Snippets Groups Projects
Commit 55d4d242 authored by KimTaeeun's avatar KimTaeeun
Browse files

Upload New File

parent 53f6aafe
No related branches found
No related tags found
No related merge requests found
import sys
print(sys.builtin_module_names)
print()
for path in sys.path:
print(path)
from calculator import plus as p
from calculator import minus as m
print(p(10, 5))
print(m(10, 5))
#print(multiply(10, 5))
#print(divide(10, 5))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment