Skip to content

Instantly share code, notes, and snippets.

View rudrathegreat's full-sized avatar
🎥
Running a YouTube Channel!

Rudra Sekhri rudrathegreat

🎥
Running a YouTube Channel!
View GitHub Profile
@mfilipelino
mfilipelino / prime.py
Last active November 25, 2022 14:26
is prime
def is_prime(number):
if number <= 0:
return False
if number == 1:
return True
elif number == 2:
return True
else:
for i in range(2, number):
if number % i == 0:
@ProtichiChatterjee
ProtichiChatterjee / PY0101EN-2-2-Lists.ipynb
Created September 27, 2020 08:22
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.