ci
 1#!/usr/bin/python
 2
 3
 4def main():
 5    print("Hello from python!")
 6
 7    with open("test.txt") as file:
 8        print(file.read())
 9
10
11if __name__ == "__main__":
12    main()
13