How to remove no-breaking space in Python?

name=input()
print("Hello",name)
print("Please select an object")
print("Cuboid, Cylinder or Triangular prism")
Shape=input()
if Shape=="Cylinder":
  
  print("submit the Width:   ")
  W=int(input())
  print("sumbit the Lenght:  ")
  L=int(input())
  print("sumbit the Height:  ")
  H=int(input())
  print("submit the Radius:  ")
  R=int(input())
if Shape=="Cuboid":
  print("Please Submit the Width, Height and Length")
  print("submit the Width:   ")
  W=int(input())
  print("sumbit the Lenght:  ")
  L=int(input())
  print("sumbit the Height:  ")
  H=int(input())
if Shape=="Triangular Prism":
  print("Please Submit the Width, Height and Length")
  print("submit the Width:   ")
  W=int(input())
  print("sumbit the Lenght:  ")
  L=int(input())
  print("sumbit the Height:  ")
  H=int(input())

i need help with this ive been trying to remove it but it doesnt work and it is due by 11:59 PM

1 Like

Sorry, but we cannot help you with school assignments.

3 Likes

that sucks, Well im screwed but why tho im curious?

We sure can in this case

just remove line 7