Python Programming - Standard Libraries - Discussion

Discussion Forum : Standard Libraries - General Questions (Q.No. 80)
80.
How can you use the sysconfig module in Python to get information about the Python installation?
sysconfig.get_info()
sysconfig.info()
sysconfig.get_config()
sysconfig.config()
Answer: Option
Explanation:
import sysconfig

# Example usage of sysconfig module for getting information about the Python installation
config_info = sysconfig.get_config()
print(config_info)
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.