No i cannot bcs i dont know
Answer:
user_salary = int(input("Please Enter Your Salary : "))
if user_salary in range(10000, 20000):
print("Tax = ",int(user_salary/100*1))
elif user_salary in range(20000, 30000):
print("Tax = ",int(user_salary/100*2))
elif user_salary in range(30000, 40000):
print("Tax = ",int(user_salary/100*3))
else:
print("No Tax!")
Explanation:
Answer:
crtl+u is a shortcut.
Explanation:
Microsoft Windows/KDE/GNOME:
underline
Unix (command line and programs using readline):
Cut text between beginning of line and cursor
I believe the answer is A
Hope this helps