Commit 63cd4717 by BellCodeEditor

auto save

parent 09e0d755
Showing with 10 additions and 2 deletions
# txt='welcome to the bellcode'
# new_txt=txt.split()
# print(new_txt)
num='13.15.21.9.14.22'
new_num=num.split('.')
print(new_num)
\ No newline at end of file
...@@ -3,4 +3,5 @@ with open(r'C:\Users\David\Desktop\sales_list.txt','r',encoding='utf-8') as file ...@@ -3,4 +3,5 @@ with open(r'C:\Users\David\Desktop\sales_list.txt','r',encoding='utf-8') as file
# print(type(a[3:5])) # print(type(a[3:5]))
for i in a: for i in a:
print(a) data=i.split()
\ No newline at end of file print(data[1:])
\ 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