Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

something useless. python

#this is something useless that i made. you can copy and check it out.

from time import sleep, time

how_many_time = 0
CAN_loop = True
can_do = True

eric_ok = "eric : no you are stupid"
george_ok = "george : no you are stupid"

while CAN_loop:
    if can_do:
        print(eric_ok)
        sleep(0.3)
        how_many_time = how_many_time + 1
        can_do = False
    elif can_do == False:
        print(george_ok)
        sleep(0.3)
        can_do = True
        if how_many_time == 8:
            sleep(1)
            print("eric : wait? are we both stupid?")
            sleep(1)
            print("george : ye i think so")
            sleep(1)
            print("eric : yay. both stupid best friends")
            sleep(1)
            print("george : ye")
            sleep(1)
            print("eric : so we are ")
            sleep(1)
            print("george : emmm, i still think you are more stupid than me")
            george_ok = "george : no youre are more stupid"
            eric_ok = "eric : no youre are more stupid" 
            while CAN_loop:
                if can_do:
                    print(eric_ok)
                    sleep(0.3)
                    how_many_time = how_many_time + 1
                    can_do = False
                elif can_do == False:
                    print(george_ok)
                    sleep(0.3)
                    can_do = True
Comment

PREVIOUS NEXT
Code Example
Python :: if statement collection python 
Python :: random.randint(0 1) 
Python :: for x in range(1, 10, 3): print(x) 
Python :: reverse words and swapcase in python 
Python :: pandas cummax 
Python :: print A to Z in python uppercase 
Python :: fuiyoh 
Python :: airflow find trigger type 
Python :: python django creating products 
Python :: what is the difference between max-width and flex-basis 
Python :: how to deploy to shinyapps.io 
Python :: showing typle results with for loop in py 
Python :: #clearing all keys new key in python 
Python :: python how to make item assignemnt class 
Python :: how to get random images frrom quotefancy python 
Python :: converting from series to dataframe with tabulate 
Python :: What is the expected value of print to this program X = 2 Y = 3 Z = X + Y print(Y) #Z 
Python :: What is shadows built in name? 
Python :: python remove title from name 
Python :: should i learn c++ or python 
Python :: find mising number in O(n) 
Python :: free function in python 
Python :: python cgi get raw post data 
Python :: how to convert string labels to numpy array 
Python :: fix certain parameters during curve fit python lambda 
Python :: if list is null python apply any function site:stackoverflow.com 
Python :: Separating a relational plot based on a sixth variable | seaborn relational plot 
Python :: python code to print fibonacci series 
Python :: atan of number python 
Python :: operations in python 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =