Skip to content

ცვლადები

Key Features

წარმოდგენილი პითონის კოდები შეგიძლია გამოსცადო ღრუბლოვან-გამოთვლით პლატფორმებზე, ყოველგვარი ინსტალაციის გარეშე კომპიუტერზე.

image

HCODE NAMN1 NAMA1 NAML1
GE-TB თბილისი Tbilisi tbilisi
GE-SZ სამეგრელო-ზემო სვანეთი Samegrelo-Zemo Svaneti samegrelo-zemo svaneti
GE-MM მცხეთა-მთიანეთი Mtskheta-Mtianeti mtskheta-mtianeti
GE-KA კახეთი Kakheti k'akheti
GE-GU გურია Guria guria
GE-RL რაჭა-ლეჩხუმი-ქვემო სვანეთი Racha-Lechkhumi-Kvemo Svaneti rach'a-lechkhumi-kvemo svaneti
GE-KK ქვემო ქართლი Kvemo Kartli kvemo kartli
GE-SJ სამცხე-ჯავახეთი Samtskhe-Javakheti samtskhe-javakheti
GE-AJ აჭარა Adjara ach'ara
GE-IM იმერეთი Imereti imereti
GE-SK შიდა ქართლი Shida Kartli shida kartli
GE-AB აფხაზეთი Apkhazeti apkhazeti

ტექსტური ტიპის მონაცემები - Strings

A string is a sequence of letters, numbers, and punctuation marks - or commonly known as text

In Python you can create a string by typing letters between single or double quotation marks.

strings
1
2
3
city = 'Chiatura'
region = 'Imereti'
print(city, region)
San Francisco California
print(city +' '+state)
print(city + ',' + state)
San Francisco,California

Numbers

Python can handle several types of numbers, but the two most common are:

  • int, which represents integer values like 100, and
  • float, which represents numbers that have a fraction part, like 0.5
population = 881549
latitude = 37.7739
longitude = -121.5687
print(type(latitude))
<class 'float'>
print(type(latitude))
<class 'float'>
elevation_feet = 934
elevation_meters = elevation_feet * 0.3048
print(elevation_meters)
284.6832
area_sqmi = 46.89
density = population / area_sqmi
print(density)
18800.362550650458

Exercise

We have a variable named distance_km below with the value 4135 - indicating the straight-line distance between San Francisco and New York in Kilometers. Create another variable called distance_mi and store the distance value in miles.

  • Hint1: 1 mile = 1.60934 kilometers

Add the code in the cell below and run it. The output should be 2569.37

distance_km = 4135
distance_mi = distance_km / 1.60934
print(distance_mi)
# Remove this line and add code here
2569.376266046951