aguea asia
python_exercise
@exercise_python
Python Student
Joined June 2019
Tweets
37
Following
73
Followers
22
Likes
128
Photos and videos
Photos and videos
Tweets
python_exercise
@exercise_python
11 Jul 2019
thislist = ["apple", "banana", "cherry"] thislist[1] = "blackcurrant" print(thislist)
#python
#exercise
1
python_exercise
@exercise_python
11 Jul 2019
thislist = ["apple", "banana", "cherry"] print(thislist[1])
#python
#exercise
python_exercise
@exercise_python
4 Jul 2019
print("real madrid", "barcelona", "arsenal", sep="\n")
#python
#exercise
python_exercise
@exercise_python
4 Jul 2019
print(1, 2, 3, 4, 5, sep="-")
#python
#exercise
python_exercise
@exercise_python
2 Jul 2019
thislist = ["apple", "banana", "cherry"] print(thislist)
#python
#exercise
#list
python_exercise retweeted
𝓒𝓮𝓶𝓪𝓵 𝓣𝓪𝓷𝓮𝓻
@taner_cemal
1 Jul 2019
Bilgisayarınıza Python kurmadan online shell ortamı.
python.org/shell/
Welcome to Python.org
The official home of the Python Programming Language
python.org
2
5
python_exercise
@exercise_python
25 Jun 2019
mike= "first format {} second format {} third format {}" print(mike.format("1 ok","2 ok","3 ok"))
#python
#exercise
python_exercise
@exercise_python
24 Jun 2019
Next lesson: format method
#python
#exercise
#format
#method
python_exercise
@exercise_python
24 Jun 2019
age = 36 txt = "My name is Michael, and I am {}" print(txt.format(age))
python_exercise
@exercise_python
24 Jun 2019
b = "Hello, World!" print(b[2:5])
#python
#exercise
python_exercise retweeted
Guido van Rossum
@gvanrossum
22 Jun 2019
Random Python History thing: I stole Python's 'elif' from the C Preprocessor.
gcc.gnu.org/onlinedocs/cpp/E…
15
185
980
python_exercise retweeted
Salih Baltali
@salih_baltali
19 Jun 2019
Python'da belirli aralıklarda sayı yazdırma teknikleri.
1
4
python_exercise
@exercise_python
18 Jun 2019
list1 = [1,2,3,4,5] list2 = [i * 2 for i in list1] print(list2) list comprehension
#python
#exercise
python_exercise
@exercise_python
17 Jun 2019
if True: e = 4 print(e) print(e)
1
python_exercise
@exercise_python
17 Jun 2019
#out
4 4
python_exercise
@exercise_python
17 Jun 2019
print("Enter your name:") x = input() print("Hello, ", x) string input
#python
#exercise
2
1
python_exercise
@exercise_python
15 Jun 2019
a = "Hello, World!" print(a.lower()) strings
#python
#exercise
python_exercise
@exercise_python
15 Jun 2019
a = "Hello, World!" print(len(a)) strings
#python
#exercise
python_exercise
@exercise_python
14 Jun 2019
a = "Hello, World!" print(a.upper()) strings
#python
#exercise
1
python_exercise
@exercise_python
14 Jun 2019
#out
HELLO, WORLD!
Load more