Commit 078630d4 by BellCodeEditor

save project

parent 5c5d86b8
Showing with 7 additions and 2 deletions
txt = 'welcome `to `the `bellcode'
a = txt.split('`')
print(a)
\ No newline at end of file
...@@ -3,4 +3,5 @@ with open(r'C:\Users\MK-05\Desktop\sales_list.txt','r',encoding='utf-8') as file ...@@ -3,4 +3,5 @@ with open(r'C:\Users\MK-05\Desktop\sales_list.txt','r',encoding='utf-8') as file
#print(a) #print(a)
for i in a: for i in a:
print(i) b = i.split()
\ No newline at end of file print(b[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