Ответ:
# Get a number from the user
number = input("Enter a number: ")
# Remove all occurrences of 3 and 6 from the number
number = number.replace("3", "").replace("6", "")
# Print the modified number
print(number)
Объяснение:
Надеюсь все понятно
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
# Get a number from the user
number = input("Enter a number: ")
# Remove all occurrences of 3 and 6 from the number
number = number.replace("3", "").replace("6", "")
# Print the modified number
print(number)
Объяснение:
Надеюсь все понятно