Answers for "cin for python"

74

python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)
Posted by: Guest on January-19-2020
0

cin python

for line in sys.stdin:
    for var in line.split():
#If you need something other than a string you'll need to convert it in a separate step:
var = int(var)
Posted by: Guest on March-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language