Skip to content

Commit 548022d

Browse files
committed
2014/7/3 python the first day
1 parent efcec16 commit 548022d

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

hello.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print "Hello world!"

inputOutput.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name = raw_input()
2+
print "Your name is",name

sum100.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sum = 0
2+
for x in range(101):
3+
sum = sum + x
4+
print sum

0 commit comments

Comments
 (0)