[V2] J'ai écrit le programme python de ma journée de travail
jeanSodo
2021-01-18 16:04:48
h = 10 # t en heures
m = 0 # m en minutes
start_day()
while h<17:
if state == State.A_MON_BUREAU:
faire_semblant_de_travailler = False
for collegue in collegues:
if collegue.is_derriere_mon_dos():
faire_semblant_de_travailler = True
if faire_semblant_de_travailler:
random_click_on_screen(screen)
random_click_on_keyboard(kb)
else:
handle_JVC()
check_Twitter()
check_Telegram()
if h == 12 and m== 40:
state = State.EN_ROUTE_VERS_LE_PANINI
if h == 10 and m == 30:
state = State.BRANLETTE_DANS_LES_TOILETTES
if state == State.EN_ROUTE_VERS_LE_PANINI:
distance_avec_le_panini = distance_avec_le_panini -1
if distance_avec_le_panini <= 1:
euros_en_poche = euros_en_poche - 8
state = State.RETOUR_AU_BUREAU
if state = State.RETOUR_AU_BUREAU:
distance_avec_le_panini = distance_avec_le_panini + 1
if distance_avec_le_panini >= 150:
state = State.MANGE_LE_PANINI
if state = State.MANGE_LE_PANINI:
if panini.is_finished():
state = State.A_MON_BUREAU
if state = State.BRANLETTE_DANS_LES_TOILETTES:
if milkyway_out_of_the_door()
state = State.A_MON_BUREAU
handle_horloge()
end_day()
def start_day():
for collegue in collegues:
if collegue.prenom in prenoms_connus:
collegue.saluer("Bonjour "+collegue.prenom)
else:
collegue.saluer("Bonjour")
boireUnCafe()
euros_en_poche = euros_en_poche - 0.4
state = State.A_MON_BUREAU
def end_day():
verrouillerPC()
partir_subrepticement_pour_n_avoir_a_dire_au_revoir_a_personne()
def random_click_on_screen(screen):
x = random.random()*screen.width
y = random.random()*screen.height
point = Point(x,y)
click(point)
def random_click_on_keyboard(kb);
t = random.uniform(len(kb.touches))
kb.press(t)
class Collegue()
def __init__(self):
self.prenom = ""
def saluer(self,message):
r = rq.post("http://"+self.prenom, data={"message": message})
# -- TODO
def is_derriere_mon_dos(self):
# insert your code here
return False
class handle_horloge():
m = m + 0.1
if m>=60:
m = 0
h = h + 1
class State(Enum):
A_MON_BUREAU = 1
EN_ROUTE_VERS_LE_PANINI = 2
RETOUR_AU_BUREAU = 3
MANGE_LE_PANINI = 4
BRANLETTE_DANS_LES_TOILETTES = 5
jeanSodo
2021-01-18 16:07:09
oops, j'ai confondu "class" et "def" pour le "handle_horloge"
Larrychance777
2021-01-18 16:07:41
C'est facile à apprendre le python l'op ?
Lissoupaine3
2021-01-18 16:09:00
using System;
Console.WriteLine("Issou");
Console.ReadKey();
jeanSodo
2021-01-18 16:09:57
Le 18 janvier 2021 à 16:07:41 Larrychance777 a écrit :
C'est facile à apprendre le python l'op ?
ouihttps://image.noelshack.com/fichiers/2017/02/1484075468-gtkirby.jpg
Je pense que n'importe qui peut comprendre mon code ici https://image.noelshack.com/fichiers/2017/02/1484075468-gtkirby.jpg
Larrychance777
2021-01-18 16:10:33
Le 18 janvier 2021 à 16:09:57 jeanSodo a écrit :
Le 18 janvier 2021 à 16:07:41 Larrychance777 a écrit :
C'est facile à apprendre le python l'op ?
ouihttps://image.noelshack.com/fichiers/2017/02/1484075468-gtkirby.jpg
Je pense que n'importe qui peut comprendre mon code ici https://image.noelshack.com/fichiers/2017/02/1484075468-gtkirby.jpg
J'adore apprendre des trucs ça tombe bien, je pense que je vais m'entrainer alors
Lissoupaine3
2021-01-18 16:10:43
Au moins t'as pas les accolades
Lissoupaine3
2021-01-18 16:11:49
A chaque fois que je poste dans un topic je le fais bider
jeanSodo
2021-01-18 16:12:28
arf, j'ai oublié le double égal plein de foishttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Je suis bon pour une V3https://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
jeanSodo
2021-01-18 16:12:40
Le 18 janvier 2021 à 16:11:49 Lissoupaine3 a écrit :
A chaque fois que je poste dans un topic je le fais bider
pareilhttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Larrychance777
2021-01-18 16:12:47
Ah ouais on peux carrément coder un snake avec ça, ça a l'air plutôt intéressant
cuteTako
2021-01-18 16:13:26
Le 18 janvier 2021 à 16:12:28 jeanSodo a écrit :
arf, j'ai oublié le double égal plein de foishttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Je suis bon pour une V3https://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
ne pas avoir de LINTER pour régir sa vie, c'est une honte
jeanSodo
2021-01-18 16:13:36
et j'ai encore oublié l'opti sur faire_semblant_de_travaillerhttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
jeanSodo
2021-01-18 16:14:56
Le 18 janvier 2021 à 16:13:26 cuteTako a écrit :
Le 18 janvier 2021 à 16:12:28 jeanSodo a écrit :
arf, j'ai oublié le double égal plein de foishttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Je suis bon pour une V3https://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
ne pas avoir de LINTER pour régir sa vie, c'est une honte
je l'ai fait sous notepad++https://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
mon boulot est en java normalement, j'ai pas d'IDEhttps://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
Lissoupaine3
2021-01-18 16:15:26
T'as oublié les pointeurs pour l'optimisation... oups mauvais langage
Lissoupaine3
2021-01-18 16:15:57
Le 18 janvier 2021 à 16:14:56 jeanSodo a écrit :
Le 18 janvier 2021 à 16:13:26 cuteTako a écrit :
Le 18 janvier 2021 à 16:12:28 jeanSodo a écrit :
arf, j'ai oublié le double égal plein de foishttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Je suis bon pour une V3https://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
ne pas avoir de LINTER pour régir sa vie, c'est une honte
je l'ai fait sous notepad++https://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
mon boulot est en java normalement, j'ai pas d'IDEhttps://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
Pk tu prends pas Visual Studio Code ?
jeanSodo
2021-01-18 16:16:20
Le 18 janvier 2021 à 16:15:26 Lissoupaine3 a écrit :
T'as oublié les pointeurs pour l'optimisation... oups mauvais langage
Je ne mange pas de ce pain làhttps://image.noelshack.com/fichiers/2017/18/1493774647-1479176457-pretrerisitas.png
moongaze
2021-01-18 16:16:32
Je suis pas programmeur mais jerry quand même.https://image.noelshack.com/fichiers/2020/04/5/1579862759-stickers-jvc-hazmat.png
jeanSodo
2021-01-18 16:17:06
Le 18 janvier 2021 à 16:15:57 Lissoupaine3 a écrit :
Le 18 janvier 2021 à 16:14:56 jeanSodo a écrit :
Le 18 janvier 2021 à 16:13:26 cuteTako a écrit :
Le 18 janvier 2021 à 16:12:28 jeanSodo a écrit :
arf, j'ai oublié le double égal plein de foishttps://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
Je suis bon pour une V3https://image.noelshack.com/fichiers/2017/39/3/1506463227-risitaspeur.png
ne pas avoir de LINTER pour régir sa vie, c'est une honte
je l'ai fait sous notepad++https://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
mon boulot est en java normalement, j'ai pas d'IDEhttps://image.noelshack.com/fichiers/2017/20/1494885210-img-4061.jpg
Pk tu prends pas Visual Studio Code ?
j'avais la flemme de l'installerhttps://image.noelshack.com/fichiers/2018/25/5/1529693695-sans-titre-22-copie.pngc'est pas si mal notepad++https://image.noelshack.com/fichiers/2018/25/5/1529693695-sans-titre-22-copie.png