Computer Science, asked by vis7mitsinghdip, 1 year ago

write an algorithm to print your name

Answers

Answered by AtharvaMalji
2
python language script

#variable storing name
name = input("what is your name ? ")

#command for printing the value stored in variable name on screen
print(name)
Similar questions