| 123456789101112131415161718 |
- /*
- * Copyright (c) 2006-2019, RT-Thread Development Team
- *
- * SPDX-License-Identifier: MIT License
- *
- * Change Logs:
- * Date Author Notes
- * 2019-06-13 SummerGift first version
- */
- import sys
- print(sys.version)
- print(sys.version_info)
- print(sys.path)
- print(sys.__name__)
- print(sys.platform)
- print(sys.byteorder)
|