Computer Science, asked by angeltheresa457, 2 months ago

In python, what is the command for asking first name , last name and ID in a single line but to display the ID in a different line?

Answers

Answered by devansh10335
0

Answer:

bagsjsusbgwjwgwfwhsyshsvfs

Answered by vipinjangra
1

Answer:

first_name = input("Enter First name:")

last_name = input("Enter Last name:")

id = input("Enter ID:")

print(first_name, + last_name)

print(id)

Explanation:

Hope it will help you

Similar questions