Asking Questions from User

Strings

1
2
3
4
5
#
name = input('Enter name:')
  
room = input('What room are you in:')
#

Integers (whole numbers)

1
2
3
4
5
#
seats = int(input('Enter number of seats:'))
  
pupils = int(input('Enter number of pupils:'))
#

Floating Point (decimal numbers)

1
2
3
4
5
#
heightMetres = float(input('Enter your height in metres:'))
  
price = float(input('Enter price:'))
#