├── test3.py ├── test2.py ├── test4.py ├── first_python.py └── README.md /test3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- 1 | print("hello there") -------------------------------------------------------------------------------- /test4.py: -------------------------------------------------------------------------------- 1 | print("hello nahom") 2 | -------------------------------------------------------------------------------- /first_python.py: -------------------------------------------------------------------------------- 1 | print('hello') 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # hello_world 2 | testing git_hub for the first time 3 | and i want to be well prepared for more to come 4 | --------------------------------------------------------------------------------