Commit 2c719440 by BellCodeEditor

save project

parent 958d4c7f
Showing with 12 additions and 7 deletions
def func(n):
if n==1:
return 1
return func(n-1)*n
\ No newline at end of file
q={'q':18,'w':19}
q['e']=18
print(q)
q['w']=18
print(q)
q={'w':18,'w':19}
if 'e' in q:
print('r')
else:
q['e']=20
print(q)
\ 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