Advertisement
c0d3dsk1lls

Print a string CodedSkills.net

Aug 3rd, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.85 KB | None | 0 0
  1. #==============================================================================================================================
  2. #--------------------------------------------------------------------------------------------------------------------
  3.  
  4. #PRINT A STRING-------
  5. name = 'C0D3D'
  6. print('Hello' +name)
  7. #print(type(name))
  8.  
  9. #--------------------------------------------------------------------------------------------------------------------
  10.  
  11. #COMBINE VARIABLES----------
  12. first_name ='C0D3D'
  13. last_name = 'Sk1lls'
  14. full_name = first_name +" "+ last_name
  15. print('Hello '+full_name)
  16. #print(type(full_name))
  17.  
  18. #--------------------------------------------------------------------------------------------------------------------
  19. #==============================================================================================================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement