x = lambda : 10
print(x())
# returns 10 - it can have any number of argument , zero included
y = lambda x: None
print(y(1))
# returns None
A is correct :(
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
JeyTlenJey
4 months agoDave304409
4 months, 3 weeks agoDKAT2023
4 months, 4 weeks ago