Hinweise für Anfänger!
Vermeiden Sie reservierte Wörter, da diese in integrierten Funktionen wie list, abs und str verwendet werden! Siehe unten für Details. http://qiita.com/cm3/items/6a856c44dd92632aa54f
bool
a and b #Wahr, wenn sowohl a als auch b wahr sind
a or b #Wahr, wenn a oder b wahr ist
not a #Richtig, wenn a falsch ist
none
if hoge is None:
#Verarbeitung wenn keine
if hoge is not None:
#Wenn nicht keine
array
values = [1, 2, 3, 4]
print values[0] #1
print "length=" + str( len(values) ) #length=4
push
list = ["A", "B", "C"]
list.append("D")
print list # ["A", "B", "C", "D"]
Andere verwandte Funktionen http://www.pythonweb.jp/tutorial/list/
dict
d = {'Yamada': 30, 'Suzuki': 40, 'Tanaka': 80}
dict
for k, v in d.items():
print k, v # Tanaka 80, Yamada 30, Suzuki 40
for k in d.keys():
print k, d[k] # Suzuki 40, Yamada 30, Tanaka 80
for v in d.values():
print v # 80, 30, 40
for k, v in d.iteritems():
print k, v # Tanaka 80, Yamada 30, Suzuki 40
for
#Schleife von 0 bis 9
for i in range(0, 10):
print "hoge " + str(i)
for
#Scannen Sie den Inhalt des Arrays
values = [ "hoge", "fuge", 123 ]
for value in values:
print value
if
if hoge < 1:
print "fuga1"
elif hoge < 2:
print "fuga2"
else:
print "fuga3"
cast
cast
print "hoge" + str( 100 ) #hoge100
print 10+int("5") #15
floor
import math
math.floor(x)
math.ceil(x)
function
def hoge(a,b):
print "hoge";
return "hoge" + a + b
#Anruf
hoge("AAA","BBB")#hogeAAABBB
__name__
Eine spezielle Variable __name__
, die Sie häufig sehen. Im Fall des Hauptprogramms ist es __name __ ==" __ main __ "
. Beim Import wird der Dateiname eingegeben. Es scheint, dass die folgende Notation häufig verwendet wird, um sie zu unterscheiden.
__name__
if __name__ = "__main__":
print "Es ist das Hauptprogramm"
#else:
# print "Es ist importiert"
Wie benutzt man http://www.python-izm.com/contents/application/json.shtml Laden und speichern http://d.hatena.ne.jp/fenrifja/20130306/1362571700
http://www.tohoho-web.com/python/class.html#class
http://python.matrix.jp/pages/tips/import.html
http://www.tohoho-web.com/python/index.html
Recommended Posts