Answers for "how to multiply only integers in a list python"

4

how to input multiple integers in python

x,y=map(int,input().split())#you can change the int to specify or intialize any other data structures
print(x)
print(y)
Posted by: Guest on June-08-2020
0

how to take two integers as input in python

x, y = map(int, input().split())
Posted by: Guest on October-06-2020
3

python multiply list

a_list = [1, 2, 3]

a_list = [item * 2 for item in a_list]

print(a_list)
OUTPUT
[2, 4, 6]
Posted by: Guest on July-26-2020

Code answers related to "how to multiply only integers in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language