I Haz Codes

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Menu
Joining

Copy the code into a new file. Save it as “joining.py”.

Make the following changes.


– change the variable y to be your name.

Add a third variable, Z, to store your surname. Update the print to display your surname as well.

Run the code and it should say hello and say your full name.

x = "hello"
y = "paul"
print(x + y)

Comments are closed.

Information