×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Python
Posted by: JOSE MARIA
Added: Apr 3, 2020 7:42 PM
Views: 4297
Tags: no tags
  1. x = int(1)
  2. y = int(2.8)
  3. z = int("3")
  4. print(x)
  5. print(y)
  6. print(z)