21 lines
253 B
Python
21 lines
253 B
Python
import os
|
|
import math
|
|
import numpy as np
|
|
|
|
|
|
|
|
def main():
|
|
print("Hello, this is Patrick")
|
|
|
|
f = open("names.txt", 'r')
|
|
names = []
|
|
for name in f:
|
|
names.append(name)
|
|
|
|
names.sort()
|
|
|
|
print(names)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |