Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 02_Day_Variables_builtin_functions/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
'city': 'Helsinki'
}

# Taking the user name and job role as an input
input("Enter your name: ")
input("Enter your job role: ")

# Printing the values stored in the variables

print('First name:', first_name)
Expand Down