Posts by Jefferson Correia • 11 points
2 posts
-
0
votes0
answers17
viewsQ: Conditional - If, Elif, Else
I am a beginner in Python and I have the following script running by Vscode and Pycharm terminal. from math import pi import sys def help(): print("É necessário informar o valor do Raio.")…
-
1
votes2
answers115
viewsQ: Remove only strings from a list
I have the following code: Lista_1 = [10, 3, 6, 27, 'Maria'] Lista_2 = [37, 8, 45, 80, 'Jose'] Lista_3 = [43, 67, 99, 3.456, 'Pipoca'] Lista_4 = [432, 456, 333, 538, 'Bala'] Concatenating lists…