• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

shared_fooの不要ディレクトリ削除前のもの


Commit MetaInfo

Revision43869166eb7b11bb0f639784be2a4dc39292d65a (tree)
Time2016-07-11 09:29:00
Authorsuikan <suikan@user...>
Commitersuikan

Log Message

study

Change Summary

Incremental Difference

--- a/pyqt_test/hello.py
+++ b/pyqt_test/hello.py
@@ -2,4 +2,13 @@
22 #coding: utf-8
33
44 print "hello, world"
5+
6+a = ["alpha", "beta", "gamma"]
7+print type(a)
8+print a[1:]
9+
10+b = "alpha", "beta", "gamma"
11+print type(b)
12+print b[1:]
13+
514 print "Testing Python"