common module¶
The common module contains common functions and classes used by the other modules.
about()
¶
Prints helpful information about the package.
Source code in geo_ice_age/common.py
def about():
"""Prints helpful information about the package.
"""
print("Welcome to the geo-ice-age package!")
hello_world()
¶
Prints "Hello World!" to the console.
Source code in geo_ice_age/common.py
def hello_world():
"""Prints "Hello World!" to the console.
"""
print("Hello World!")
ice_age_init()
¶
Prints welcome message to the console.
Source code in geo_ice_age/common.py
def ice_age_init():
"""Prints welcome message to the console.
"""
print("Hello Ice Age!")