Skip to content

Instantly share code, notes, and snippets.

View asfat's full-sized avatar
🎯
Focusing

Asfat Uddin Rahat asfat

🎯
Focusing
View GitHub Profile
@asfat
asfat / gist:61b8c2a64714d5150d6d709c4e759951
Created January 25, 2023 07:38 — forked from xrman/gist:4468f545b169969466bceb694d742dad
FastStone Capture Full Serial Key
Registration Code
Name : www.xyraclius.com
Serial : OOCRYIMDMDPWRETFPSUZ
@asfat
asfat / odd number.py
Created September 22, 2022 06:39
odd numbers
odd_number= 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95,97,99
print(odd_number)
#odd numbers using for loop
for x in range(1,101,2):
print(x)