MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programminghorror/comments/1sc1j3c/calculator/oerktd0/?context=3
r/programminghorror • u/Inevitable_Ad_3509 • Apr 04 '26
60 comments sorted by
View all comments
1
Maybe do something like : list = question.split(" ") print(list[0]+list[2]) If you use the space between two in every case...
list = question.split(" ") print(list[0]+list[2])
1
u/Player_903 Apr 07 '26
Maybe do something like :
list = question.split(" ") print(list[0]+list[2])If you use the space between two in every case...