From b50c7e99603e9f85d82d700d62c16c4fcef88715 Mon Sep 17 00:00:00 2001 From: Geno <48206120+gabrielegenovese@users.noreply.github.com> Date: Thu, 11 Jul 2024 12:57:56 +0200 Subject: Code generation (#20) Co-authored-by: geno Co-authored-by: Santo Cariotti --- test/3-2.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/3-2.py (limited to 'test/3-2.py') diff --git a/test/3-2.py b/test/3-2.py new file mode 100644 index 0000000..417fbde --- /dev/null +++ b/test/3-2.py @@ -0,0 +1,16 @@ + +num = 29 + +def prime_numBIS(div): + if (num >=1): + if (div*div <= num/2): + if (num % div) == 0: + return False + else: + return prime_numBIS(div+1) + else: + return True + else: + return False + +print(prime_numBIS(2)) -- cgit v1.2.3-18-g5258