㎝
Profilo di
Nome | ㎝ |
---|---|
Indirizzo email | ㎝🐌🐍.🇮🇹 |
Avatar | ![]() |
Messaggi | 258 |
Firma forum | |
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you can do whatever you want with this stuff. If we meet some day, and you think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝ |
-
- 2023-09-07 14:37:31
- Re: Decoratori Python: registrazione personalizzata per chiamate di funzioni
- Forum >> Programmazione Python >> Database
- potresti cominciare da qui:
https://www.w3resource.com/python-exercises/decorator/python-decorator-exercise-1.phpTHE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2023-09-06 22:07:26
- Re: Come installare opentele~=1.15.1 ?
- Forum >> Principianti
- a me sembra funzionare (vedi allegato)
--- Ultima modifica di ㎝ in data 2023-09-06 22:09:39 ---THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2023-09-03 18:46:41
- Re: AttributeError: partially initialized module 'pygame' has no attribute 'init' (most likely due to a circular import)
- Forum >> Programmazione Python >> Videogames
- Patcan said @ 2023-09-03 16:09:11:File "/home/patrizio/Scaricati/pygame.py", line 3, in <module>Sembra che tu abbia un file chiamato `pygame.py` in `~/Scaricati`...
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2023-05-11 08:47:34
- Re: Sto con Python
- Forum >> Notizie
- 👏THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2022-10-01 18:09:32
- Re: sequenze di numeri
- Forum >> Principianti
-
>>> for i in range(11): ... print(f'{i:02}') ... 00 01 02 03 04 05 06 07 08 09 10
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2022-03-05 22:21:02
- Re: Generatore di istogrammi
- Forum >> Principianti
- per esempio da
>>> def istogramma(lista): ... print(*['*' * i for i in lista], sep = '\n') ... >>> istogramma([42, 33, 66]) ****************************************** ********************************* ******************************************************************
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2021-11-21 19:26:48
- Re: [Random] Estrae numeri non ripetendoli
- Forum >> Principianti
- THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2021-11-20 17:06:33
- Re: tabelle di verità
- Forum >> Programmazione Python >> IDE ed Editor
- THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2021-05-16 10:34:17
- Re: Aiuto Tkinter
- Forum >> Programmazione Python >> GUI
- Ci fai vedere il codice, e l'errore completo?THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝
-
- 2021-05-16 10:32:01
- Re: Passaggio di valori tra classi
- Forum >> Principianti
-
se ho capito cosa intendi fare, prova sostituendo `a = 10` con `A.a = 10`
class A: def esegui(self): A.a = 10 class B: def esegui(self): b = A.a print(b) if __name__ == "__main__": primo = A() primo.esegui() secondo = B() secondo.esegui()
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝