Write a Python program to get the copyright information and write Copyright information in Python code.
1 2 3 4 |
import sys print("\nPython Copyright Information") print(sys.copyright) print() |
1 2 3 4 |
import sys print("\nPython Copyright Information") print(sys.copyright) print() |