0
Data science
n, p = [int(x) for x in input().split()] I’m trying to do the first project from the data science course. I do not fully understand it, can someone help me with it?
6 Respostas
+ 2
[int(x) for x in input().split()] construction create from string example "2 3", list of integer values [2,3] and n, p = [2,3] equal n = 2, p = 3
+ 1
[int(x) for x in input().split()]
This generation equal
GeneratedList = []
for x in input().split():
GeneratedList.append(int(x))
+ 1
thank you so much😊
0
What interesting u?
0
input().split()
Its obviously split inputed string in list by spaces(default)
0
It looks like you're trying to parse two integers, n, and p, from input in Python. Here's a concise way to do it:
n, p = map(int, input().split())
This line will read a single line of input, split it by spaces, and convert the parts to integers, assigning them to n and p. If you have further questions about how to use n and p in your data science tasks, feel free to ask!