12 lines
136 B
Python
12 lines
136 B
Python
import os
|
|
import math
|
|
import numpy as np
|
|
|
|
|
|
|
|
def main():
|
|
print("Hello, this is Patrick")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |