Тип объекта не подлежит подписке

Я пытаюсь создать программу, которая умножает пользовательский ввод (потоки) на данные из списка, указанного в начале кода. В нем говорится, что объект типа не может быть подписан и в назначении есть несовместимые типы.

services =  "'Spotify', 'Apple Music', 'Google Play Music', 'Deezer', 'Pandora', 'Amazon Music Unlimited', 'Tidal'" #variable of the row names
possiblePayment = [0.00318,0.00563,0.00551,0.00436,0.00151,0.01196,0.00989]
possiblePayment = float

streams=input("How many streams would you like to calculate: ") #user input
streams=int
print("The options of streaming services are " + services) #gives user the options of streaming services they can choose from
platform=input("What platform would you like to calculate your streams on: (Case Sensitive! Please type name as it appears above) ") #user chooses service
    
if platform == "Spotify":
    print("Spotify will pay you $" + str(possiblePayment[0]) + " per stream") #if the user chooses Spotify, take data from row 2 (the row with spotify in it) of the file
    print("You would earn $" + str(streams*possiblePayment[0])) #multiplies "streams" by the data in row 2 of the file (DOES NOT WORK, HERE IS WHERE THE ERRORS OCCUR)
            
elif platform == "Apple Music":
    print("Apple Music will pay you $" + str(possiblePayment[1]) + " per stream") #see above
    print("You would earn $" + str(streams*possiblePayment[1])) 
            
elif platform == "Google Play Music":
    print("Google Play Music will pay you $" + str(possiblePayment[2]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[2]))
            
elif platform == "Deezer":
    print("Deezer will pay you $" + str(possiblePayment[3])+ " per stream")
    print("You would earn $" + str(streams*possiblePayment[3]))
            
elif platform == "Pandora":
    print("Pandora will pay you $" + str(possiblePayment[4]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[4]))
            
elif platform == "Amazon Music Unlimited":
    print("Amazon Music Unlimited will pay you $" + str(possiblePayment[5]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[5]))
            
elif platform == "Tidal":
    print("Tidal will pay you $" + str(possiblePayment[6]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[6]))
            
else:
    print("Invalid Input") #if they dont give the name of a streaming service

почему streams=int? int - это класс. вы потеряете входное значение, если назначите класс этой переменной.

JacksonPro 15.12.2020 13:01

это количество потоков, которые получает песня. это не может быть поплавок, потому что вы не можете транслировать песню наполовину

Lucia 15.12.2020 13:02

Вы имеете в виду использовать streams=int(input("How many streams would you like to calculate: "))?

JacksonPro 15.12.2020 13:03
Почему в Python есть оператор "pass"?
Почему в Python есть оператор "pass"?
Оператор pass в Python - это простая концепция, которую могут быстро освоить даже новички без опыта программирования.
Некоторые методы, о которых вы не знали, что они существуют в Python
Некоторые методы, о которых вы не знали, что они существуют в Python
Python - самый известный и самый простой в изучении язык в наши дни. Имея широкий спектр применения в области машинного обучения, Data Science,...
Основы Python Часть I
Основы Python Часть I
Вы когда-нибудь задумывались, почему в программах на Python вы видите приведенный ниже код?
LeetCode - 1579. Удаление максимального числа ребер для сохранения полной проходимости графа
LeetCode - 1579. Удаление максимального числа ребер для сохранения полной проходимости графа
Алиса и Боб имеют неориентированный граф из n узлов и трех типов ребер:
Оптимизация кода с помощью тернарного оператора Python
Оптимизация кода с помощью тернарного оператора Python
И последнее, что мы хотели бы показать вам, прежде чем двигаться дальше, это
Советы по эффективной веб-разработке с помощью Python
Советы по эффективной веб-разработке с помощью Python
Как веб-разработчик, Python может стать мощным инструментом для создания эффективных и масштабируемых веб-приложений.
1
3
135
1
Перейти к ответу Данный вопрос помечен как решенный

Ответы 1

Ответ принят как подходящий

Нашел две проблемы в вашем коде:

  1. Список в possiblePayment в строке 2 заменяется логическим значением в строке 3.
  2. Нашел строку под названием streams=int

Я переименовал логическое значение в ispossible и обернул входные потоки с помощью int

Код:

services =  "'Spotify', 'Apple Music', 'Google Play Music', 'Deezer', 'Pandora', 'Amazon Music Unlimited', 'Tidal'" #variable of the row names
possiblePayment = [0.00318,0.00563,0.00551,0.00436,0.00151,0.01196,0.00989]
ispossible = float

streams=int(input("How many streams would you like to calculate: ")) #user input

print("The options of streaming services are " + services) #gives user the options of streaming services they can choose from
platform=input("What platform would you like to calculate your streams on: (Case Sensitive! Please type name as it appears above) ") #user chooses service
    
if platform == "Spotify":
    print("Spotify will pay you $" + str(possiblePayment[0]) + " per stream") #if the user chooses Spotify, take data from row 2 (the row with spotify in it) of the file
    print("You would earn $" + str(streams*possiblePayment[0])) #multiplies "streams" by the data in row 2 of the file (DOES NOT WORK, HERE IS WHERE THE ERRORS OCCUR)
            
elif platform == "Apple Music":
    print("Apple Music will pay you $" + str(possiblePayment[1]) + " per stream") #see above
    print("You would earn $" + str(streams*possiblePayment[1])) 
            
elif platform == "Google Play Music":
    print("Google Play Music will pay you $" + str(possiblePayment[2]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[2]))
            
elif platform == "Deezer":
    print("Deezer will pay you $" + str(possiblePayment[3])+ " per stream")
    print("You would earn $" + str(streams*possiblePayment[3]))
            
elif platform == "Pandora":
    print("Pandora will pay you $" + str(possiblePayment[4]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[4]))
            
elif platform == "Amazon Music Unlimited":
    print("Amazon Music Unlimited will pay you $" + str(possiblePayment[5]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[5]))
            
elif platform == "Tidal":
    print("Tidal will pay you $" + str(possiblePayment[6]) + " per stream")
    print("You would earn $" + str(streams*possiblePayment[6]))
            
else:
    print("Invalid Input") #if they dont give the name of a streaming service

Другие вопросы по теме