Je suis un débutant et je vais défier Python. Postscript: je l'ai fait au format Python3.
Je cours chez Colaboratory.
~~ Je vais essayer la construction de l'environnement dans Ubuntu. ~~ ~~http://qiita.com/pugiemonn/items/7257aa01897011469131~~
HelloWorld Imprimez la chaîne Hello World avec print.
HelloWorld!
print("HelloWorld!")
Attribuez 10 à la variable.
Python
val_int = 10
val_float = 1.23
val_boolean = True
True et False sont en majuscules.
Vous pouvez affecter plusieurs à une variable en organisant ,
.
Attribuer plusieurs variables
a, b, c = 10, 30, 40
print(a)
print(b)
print(c)
#production
10
30
40
La liste est une liste ordonnée de valeurs.
Python
number = [2, 40, 3]
string_text = ['a', 'b', '8']
#Comment accéder à la liste
>>> number[1]
40
Un hachage d'une paire de clé et de valeur. Les dictionnaires ne maintiennent pas l'ordre.
Python
args = {80: 30, 2: 'piyo', 'hoge': 90}
#Comment accéder au dictionnaire
>>> args[80]
30
>>> args["hoge"]
90
Utilisez # pour les commentaires.
Python
#Commentaire d'une ligne
Ceci est un commentaire sur plusieurs lignes.
Python
"""
C'est un commentaire, oh oh oh oh
"""
Je vais calculer.
Python
hoge = 100 + 2200
hoge = hoge / 100
hoge = hoge * 2
print hoge # 46
Python
hoge = 10 ** 2
print hoge # 100
boucle
i = 0
for _ in range(10):
i += 1
print i
#production
1
2
3
4
5
6
7
8
9
10
Comment utiliser l'instruction if.
vv = 50
if vv < 100:
vv = '00'
print(vv)
#production
00
Si c'est le cas, ou si c'est le cas, utilisez ʻelsif`.
vv = 200
if vv < 100:
vv = '00'
elif vv < 1000:
vv = '0' + str(int(vv / 100))
print(vv)
#production
02
Python
h1 = input()
print(h1)
#contribution
10
#production
10
Python
h1 = input()
print(type(h1))
#contribution
10
#production
<class 'str'>
Une fois entré, il sera de type «str».
Il est géré par indentation.
Python
def spam():
hoge = 12
return hoge
print(spam()) # 12
J'ai pu combiner les cordes avec «+».
Concaténation de chaînes
hoge = 'hoge'
print('piyo' + hoge)# piyohoge
Merci pour votre travail acharné (☝՞ ਊ՞)
Recommended Posts