Revision history of "Rocky Python HelloWorld"

From NIMBioS

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 16:59, 10 April 2023Jstratt7 talk contribs 715 bytes +715 Created page with "= Python Code = '''helloworld.py''' <pre> print("Hello World!") </pre> = Batch Script = '''helloworld.run''' <pre> #!/bin/bash #SBATCH --job-name=PYTHON_HELLOWORLD #SBATCH --output=python_hell0_%j.out module load Python python3 helloworld.py </pre> = Running Job = <pre> [test_user@rocky7 helloworld]$ pwd /home/test_user/projects/python/helloworld </pre> <pre> [test_user@rocky7 helloworld]$ ls helloworld.py helloworld.run </pre> <pre> [test_user@rocky7 helloworld]..."