animation

 # importing the necessary packages

import time
import sys
import os

# Function for implementing the loading animation   

def load_animation():

    # String to be displayed when the application is loading
    load_str = "starting your console application..."
    ls_len = len(load_str)


    # String for creating the rotating line
    animation = "|/-\\"
    anicount = 0
    
    # used to keep the track of
    # the duration of animation
    counttime = 0       
    
    # pointer for travelling the loading string
    i = 0                   

    while (counttime != 100):
        
        # used to change the animation speed
        # smaller the value, faster will be the animation
        time.sleep(0.075)
                            
        # converting the string to list
        # as string is immutable
        load_str_list = list(load_str)
        
        # x->obtaining the ASCII code
        x = ord(load_str_list[i])
        
        
        y = 0                           

        # if the character is "." or " ", keep it unaltered
        # switch uppercase to lowercase and vice-versa
        if x != 32 and x != 46:         
            if x>90:
                y = x-32
            else:
                y = x + 32
            load_str_list[i]= chr(y)
        
        # for storing the resultant string
        res =''         
        for j in range(ls_len):
            res = res + load_str_list[j]
            
        # displaying the resultant string
        sys.stdout.write("\r"+res + animation[anicount])
        sys.stdout.flush()

        load_str = res

        
        anicount = (anicount + 1)% 4
        i =(i + 1)% ls_len
        counttime = counttime + 1
    
   
    if os.name =="nt":
        os.system("cls")
        
   
    else:
        os.system("clear")


if __name__ == '__main__':
    load_animation()

    
    s ="world"
    sys.stdout.write("Hello "+str(s)+"\n")

Comments

Popular Posts