Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 319 Bytes

what_is_the_result_lvl_1.md

File metadata and controls

13 lines (10 loc) · 319 Bytes

What is the result?

  1. 'x = 'pizza,';print(x)
  2. x = ('pizza',);print(x)
  3. x = ('pizza');print(x)
  4. x = 'pizza', 'pasta';print(x)
  5. print(list('hello')
  6. print('/n\n/n/n'.split())
  7. (1, 2) < (1, 2, 3)

Solution

Click here to view the solution.