The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

import platform
from netdisco.util.worklet import context as c
def main():
c.stash.set('python_ver', platform.python_version())
c.status.info('stashed Python version')
if __name__ == '__main__':
main()