0
Question on assigning variables
Write a Python program that prints ( displays) your name, address and telephone number
2 Answers
+ 1
And what is the question?
0
Some things you will need
Functions:
print()
input()
Assigning variables
X = "the thing you are assigning to x"
You can assign function results, functions themselves, lists, ints, strings, chars or whatever you need to variables.
I'll leave the rest to you.