Commit 99d40749 by BellCodeEditor

auto save

parent ea8dbf22
Showing with 15 additions and 1 deletions
for b in range(1,10): for b in range(1,10):
for a in range(1,b+1):
print(a,'x',b,'=',a*b,end=' ')
print()
for b in range(1,10):
for a in range(1,10): for a in range(1,10):
print(a,'x',b,'=',a*b,end=' ') print(a,'x',b,'=',a*b,end=' ')
if a==b: if a==b:
break break
print() print()
\ No newline at end of file
a='python'
print(list(a))
c=list(a)
b=''.join(c)
print(len(b))
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