Answers for "2 values in 1 line with python"

0

take two numbers as inout in single line in python

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

how to put 2 code n 1 line in python

x = 1; y = x + x; print(x + y)
Posted by: Guest on October-22-2021

Code answers related to "2 values in 1 line with python"

Python Answers by Framework

Browse Popular Code Answers by Language