Advertisement
manger32

mark_file.py

May 17th, 2023
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | Source Code | 0 0
  1. import numpy as np
  2. # CC Precompiled header
  3.  
  4. hello_world = str('Constant hello_world program should return ' + str(42))
  5. print(hello_world)
  6. ll = [120,140,'POP']
  7. print(type(ll[2]),'\n')
  8. print(ll[0],ll[1],input('\n'+ll[2]+'\n'),sep=' PORKCHOP ')
  9. birth_year = int(input('What year were you born? '))
  10. age = int(input('How old are you? '))
  11. period = np.array([age+birth_year],dtype="uint16")
  12. print(np.array(period))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement