Почему netbeans дублирует подсказки при завершении кода

a = ['a', 'b', 'c']
str =  "a123"

a_match = [True for match in a if match in str]

if True in a_match:
  print "some of the strings found in str"
else:
  print "no strings found in str"
0
задан skomisa 19 March 2019 в 22:30
поделиться