#variables name= 'Name' #Customizable exclamationMark = '!' #Customizable #prints(customizable): print('Hello ', name + '!' + True, False) print('GoodBye ' + name, exclamationMark)
Here is what the above code is Doing:
1. It’s creating a variable called name and assigning it the value ‘Name’.
2. It’s creating a variable called exclamationMark and assigning it the value ‘!’.
3. It’s printing the string ‘Hello Name!’ + True, False.
4. It’s printing the string ‘GoodBye Name!’ + exclamationMark.
You can customize the code by changing the values of the variables. For example, you could change the value of name to ‘John’ and the value of exclamationMark to ‘?’.