Skip to content

Instantly share code, notes, and snippets.

View TreavVasu's full-sized avatar
🎯
Android| Flutter | Shell | Python | Bit of Java | CSE @ NITRR

treavvasu TreavVasu

🎯
Android| Flutter | Shell | Python | Bit of Java | CSE @ NITRR
View GitHub Profile
Easy One I designed it by myself for my school exams hope Helps Everyone
Dont Forget to thanks 😆 😉 😃 😃 😃

##Follow facebook.com/versatile.vasu ##Follow @vasusoniat1

@TreavVasu
TreavVasu / Amstrom numbers.py
Last active December 6, 2016 09:32
Some Python Projects
b=0
for x in range (100,1000,1):
s=x%10
m=(x/10)%10
n=x/100
b=b+1
tot=s**3+m**3+n**3
if tot==x:
print x
@TreavVasu
TreavVasu / Lib.py
Last active April 18, 2020 04:14
Library Project
import os
import pickle
import time
width = "150"
height = "50"
os.system("mode con cols="+width+"lines="+height)
######ADD CODE FOR SPECIAL EFFECTS
##
##os.system('COLOR F0')
@TreavVasu
TreavVasu / School Qs
Created January 26, 2018 20:47
School Qs
def Q(l):
for c in range(0,len(l)):
for k in range(0,len(l)-c):
print l[k],
print "0 "*c
x=eval(raw_input("L:"))
Q(x)
class stud: