Introduction to Python Programming for Business and Social Science Applications. Frederick Kaefer
Чтение книги онлайн.
Читать онлайн книгу Introduction to Python Programming for Business and Social Science Applications - Frederick Kaefer страница 27
Back to image
There are eight lines of code as follows. Line 1: # This Python code works with a list object. Line 3: taxi_ride_info = [“da7a62fce04” , 180, 1.1, True] #This assigns four different objects to the list. Line 4: print(“The data type for the taxi_ride_info variable is: ”, type(taxi_ride_info)). Line 6: # The following code prints out the data type of each element of the list. Line 7: print(“The data type for the first element of taxi_ride_info is: ”, type(taxi_ride_info[0])). Line 9: print(“The data type for the second element of taxi_ride_info is: ”, type(taxi_ride_info[1])). Line 11: print(“The data type for the third element of taxi_ride_info is: ”, type(taxi_ride_info[2])). Line 13: print(“The data type for the fourth element of taxi_ride_info is: ”, type(taxi_ride_info[3])).
Конец ознакомительного фрагмента.
Текст предоставлен ООО «ЛитРес».
Прочитайте эту книгу целиком, купив полную легальную версию на ЛитРес.
Безопасно оплатить книгу можно банковской картой Visa, MasterCard, Maestro, со счета мобильного телефона, с платежного терминала, в салоне МТС или Связной, через PayPal, WebMoney, Яндекс.Деньги, QIWI Кошелек, бонусными картами или другим удобным Вам способом.