Commit baa7cec7 by BellCodeEditor

auto save

parent 46c0266d
Showing with 33 additions and 0 deletions
class a:
def __init__(self,b,c):
self.b=b
self.c=c
class e(a):
def __init__(self,b,c):
super().__init__(b)
self.b=5
self.c=6
def __init__(self,f):
g=self.b*self.c*self.f
c=1
c=c+1
print(c)
\ No newline at end of file
a=int(input())
b=a/100
c=a//10%100
d=a%10
print(a)
print(b)
print(c)
print(d)
\ No newline at end of file
import turtle
pen=turtle.Pen
turtle.up()
turtle.goto(-100,100)
turtle.done()
for i in range(4):
turtle.forward(200)
turtle.left(90)
\ 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