How to print() with python last two words form sentence with space? Like "Hello world, there is 200 pcs", I need print: "200 pcs". Thank you so much.
sentence = "Hello world, there is 200 pcs"
what_I_need = sentence.split()
what_I_need[-3]
# That prints "is"
print(what_I_need)
# But I need to print "is 200 pcs"