Skip to content

Commit 08cd214

Browse files
committedSep 25, 2017
first day python code
0 parents  commit 08cd214

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎index.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
a = 2
2+
b = 3
3+
print(a*b)
4+
5+
if a==3:
6+
print("ok")
7+
elif a<5:
8+
print(a)
9+
else:
10+
print("not ok")
11+
12+
13+
def speak(text):
14+
print(text)
15+
print(text*3)
16+
return text
17+
18+
19+
print(speak(2))
20+
# speak("0")
21+
22+
name = "youstart"
23+
print(name[:4:-1])
24+
25+
def palindrome(text):
26+
return print(text == text[::-1])
27+
28+
29+
palindrome("1232111")

0 commit comments

Comments
 (0)
Please sign in to comment.