str and int | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

str and int

Hi. Who can help me, i just started learning. I want to display separately positive numbers and if i have a string in list display the message "there is a line in the list" a = [1,4,78,56, -76, 'qwe'] for item in a: if item >= 0: print ('Positive numbers: {}'.format(item)) # elif in a str...... print ('There is a strung in list!') answer: Positive numbers: 1 Positive numbers: 4 Positive numbers: 78 Positive numbers: 56 Positive numbers: qwe #I don't want to see it here There is a string in list! #and it should work

8th Nov 2018, 5:30 PM
allclear
allclear - avatar
4 Answers
+ 7
If you do it like that you will get an error something like this when you use Python3 TypeError: '>=' not supported between instances of 'str' and 'int' so it's better to first print str then print positive (use elif, not if)
8th Nov 2018, 6:40 PM
Mert Yazıcı
Mert Yazıcı - avatar
+ 8
if isinstance(item, str): #or "type(item) is str" print('string') elif item >= 0: print('Positive:', item)
8th Nov 2018, 5:51 PM
Mert Yazıcı
Mert Yazıcı - avatar
+ 1
Mert Yazıcı thank you, I made my way, with your help a = [1,4,78,56, -76, 'qwe'] for item in a: if item >= 0 and type(item) is not str: print ('Positive numbers: {}'.format(item)) if type(item) is str: print('There is a string in list!')
8th Nov 2018, 6:35 PM
allclear
allclear - avatar
+ 1
a = [1,4,78,56, -76, 'qwe'] for item in a: if type(item) is str: print('There is a string in list!') elif item >= 0 and type(item) is not str: print ('Positive numbers: {}'.format(item))
8th Nov 2018, 6:52 PM
allclear
allclear - avatar