All public logs

From NIMBioS

Combined display of all available logs of NIMBioS. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:44, 10 April 2023 Jstratt7 talk contribs created page Rocky Python Prime (Created page with "= Python Code = '''prime.py''' <pre> MIN = 2 MAX = 100000 def is_prime(num): if num <= 1: return False else: for i in range(2, num): if (num % i) == 0: return False return True for i in range(MIN, MAX+1): if is_prime(i): print(i) </pre> = Batch Script = '''python-prime.run''' <pre> #SBATCH --job-name=PYTHON_PRIME #SBATCH --output=python_prime_%j.out module load Python python3 prime.py </pre> = Running Job = <pre> [test_user@rocky7 prime]$ pw...")