Skip to content

Instantly share code, notes, and snippets.

View thiwanga's full-sized avatar
😍
Working on SecDevil.com

Thiwanga Sandaruwan Dasanayaka thiwanga

😍
Working on SecDevil.com
View GitHub Profile
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from urllib2 import Request, urlopen, URLError, HTTPError
def Space(j):
i = 0
while i<=j:
print " ",
i+=1