ცვლადები¶
Key Features¶
წარმოდგენილი პითონის კოდები შეგიძლია გამოსცადო ღრუბლოვან-გამოთვლით პლატფორმებზე, ყოველგვარი ინსტალაციის გარეშე კომპიუტერზე.
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.
San Francisco California
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
<class 'float'>
<class 'float'>
284.6832
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