Commit 63d714f5 by BellCodeEditor

auto save

parent 089a3f63
Showing with 38 additions and 0 deletions
x=50
y=14
print(x//y)
'''
x=[1,2,3,4]
x.append(4)
print(x)
x=[1,2,3,4,2]
del x(2)
print(x)
a = "Nice Again!"
print(a[2:-3])
a=["tom",'ha','c',"e"]
a.insert(3,"b")
print(a)
print('a',"a","'a'")
a=["a",'ha','c',"ha"]
del a[0]
a="Excuse me"
print(a[2:-3])
a=["1",'2','3',"4","5"]
a=[]
for i in range (0,30,7):
a.append(i)
print(a)
'''
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment