Python

tmp.py



#variable
s = "str..."
l = ["1", "2", "3", "3", "4"]
t = ("A", "B", "C")
d = {"key": "value"}

s_ = str("str")
i_ = int("99")
f_ = float("100.0")
l_ = list((1,2,3))
d_ = dict([["key, "value"]])
e = set("0123456789")
ss = '''
dup
dup
dup
'''

#Syntaxe d'impression
print(s, end="")

#tranche
s[0:1]
s[-1]
s[::1]

#Fonctions intégrées
len(s)
s.split()
",".join(l)
s.strip(".")
s.capitalize()
s.title()
s.upper()
s.lower()
s.swapcase()
s.replace(".", "!")
l.append("5")
l.insert(0, "10")
del l[0]
l.remove("10")
l.pop()
l.index("1")
l.count("3")
l.sort()
c = l.copy()
d.keys()
d.values()
d.items()

#pour boucle
for val in l:
    print(val)

#Calcul
False | True
True & True
1 > 0
0 >= 0

#si déclaration
if s == "s":
    print("s!")
elif s == "str":
    print("str!")
else:
    print("!!!")

#boucle while
count = 0
while count < 3:
    print(count)
    count += 1

while True:
    print(count)
    if count == 5:
        break
    count += 1

#Notation d'inclusion de liste
ll = [v for v in range(10)]

#une fonction
def f(a,b):
    return a+b

#classe
class S():
    def __init__(self, a, b):
        self.a = a
        self.b = b

    def rep():
        print(self.a + " " + self.b)

ss = S("Thank", "you")
ss.rep()

Recommended Posts

Python
python kafka
Les bases de Python ⑤
Résumé Python
Notation d'inclusion Python
Technique Python
Étudier Python
Mémorandum Python
Python FlowFishMaster
Service Python
astuces python
fonction python ①
Les bases de Python
Mémo Python
ufo-> python (3)
Notation d'inclusion Python
Installer python
Python Singleton
Les bases de Python ④
Mémorandum Python 2
mémo python
Python Jinja2
Incrément Python
atCoder 173 Python
[Python] fonction
Installation de Python
Installer Python 3.4.3.
Essayez Python
Mémo Python
Itératif Python
Algorithme Python
Python2 + mot2vec
[Python] Variables
Fonctions Python
Python sys.intern ()
Tutoriel Python
Fraction Python
underbar python C'est ce que
Résumé Python
Démarrer python
[Python] Trier
Remarque: Python
Les bases de Python ③
Sortie du journal python
Les bases de Python
[Scraping] Scraping Python
Mise à jour Python (2.6-> 2.7)
mémo python
Mémorandum Python
Python #sort
ufo-> python
Python nslookup
apprentissage de python
[Rpmbuild] Python 3.7.3.
Python au prorata (1)
mémorandum python
Télécharger Python
mémorandum python