Python/error debug

TypeError: can't multiply sequence by non-int of type 'list'

kimble2 2024. 8. 17. 11:18
반응형

Multiplication Between a List and an Integer

Problematic Code:

 

numbers = [1, 2, 3]
result = numbers * numbers

Error Message:

 

TypeError: can't multiply sequence by non-int of type 'list'

 

Solution: To repeat the list, multiply it by an integer, or to concatenate two lists, use the + operator.

 

# Repeating the list by an integer
result = numbers * 3

# Concatenating two lists
result = numbers + numbers
반응형

'Python > error debug' 카테고리의 다른 글

TypeError:  (0) 2024.08.17
TypeError: can only concatenate str (not "int") to str  (0) 2024.08.17
NameError: name 'greet' is not defined  (0) 2024.08.10
NameError: name 'nam' is not defined  (0) 2024.08.10
NameError: name 'name' is not defined  (0) 2024.08.10