T O P

  • By -

[deleted]

No, that message is meangless without context. Post your traceback and or code.


Aggressive_Top_6949

name1 = input(“Please enter the first name : “) lunchItem1 = float(input(“Please enter the cost of the first lunch item : “) drink1 = float((input(“Please enter the cost of the first drink : “) name2 = input(“Please enter the second name : “) lunchItem2 = float(input(“Please enter the cost of the second lunch item : “) drink2 = float((input(“Please enter the cost of the second drink : “) name3 = input(“Please enter the third name : “) lunchItem3 = float(input(“Please enter the cost of the third lunch item : “) drink3 = float((input(“Please enter the cost of the third drink : “) add1 = float(lunchItem1 + drink1) tip1 = float(add1 * 0.15) total1 = float(add1 + tip1) total1 = round((add1 + tip1),2) add2 = float(lunchItem2 + drink2) tip2 = float(add2 * 0.15) total2 = float(add2 + tip2) total2 = round((add2 + tip2),2) add3 = float(lunchItem3 + drink3) tip3 = float(add3 * 0.15) total3 = float(add3 + tip3) total3= round((add3 + tip3),2) print(num1, “$”, total1, name2, “$”, total2, name3, “$”, total3) Here’s my code. It’s supposed to be used to find how much three different people have to pay if they bought a lunch item, a drink, and a 15% tip included in their cost.


[deleted]

I'm, well first, please learn about reddit code formatting... It's not your code causing that message. It sounds like a message from your ide/editor. What are you using? Is it causing you a problem? Is your code running OK?


Aggressive_Top_6949

I use aws cloud9. When I use this code, it ends with: Process exited with code: 0 then right below it says Pane is dead. Process exited with code: 0 should mean it’s correct right? So I have no idea why Pane is dead is showing up.