Skip to content

Latest commit

 

History

History
81 lines (79 loc) · 4.16 KB

README.md

File metadata and controls

81 lines (79 loc) · 4.16 KB

pycode is my collections that I create from time to time for fun. Sometimes useful for my work^^.

Hope this scripts help you somehow.^^

python script code(circle.py example)

#x^2 + y^2 = r^2 equation
def circle_draw(n):
    for i in range(-n,n+1):
        for j in range(-n,n+1):
            if(i*i + j*j <= n*n):
              print("*",end='')
            else:
              print(" ",end='')
        print("")

circle_draw(30)

oyj@controller:~/test$ python3 circle.py

                              *                              
                       ***************                       
                    *********************                    
                 ***************************                 
                *****************************                
              *********************************              
            *************************************            
           ***************************************           
          *****************************************          
         *******************************************         
        *********************************************        
       ***********************************************       
      *************************************************      
      *************************************************      
     ***************************************************     
     ***************************************************     
    *****************************************************    
   *******************************************************   
   *******************************************************   
   *******************************************************   
  *********************************************************  
  *********************************************************  
  *********************************************************  
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
*************************************************************
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
 *********************************************************** 
  *********************************************************  
  *********************************************************  
  *********************************************************  
   *******************************************************   
   *******************************************************   
   *******************************************************   
    *****************************************************    
     ***************************************************     
     ***************************************************     
      *************************************************      
      *************************************************      
       ***********************************************       
        *********************************************        
         *******************************************         
          *****************************************          
           ***************************************           
            *************************************            
              *********************************              
                *****************************                
                 ***************************                 
                    *********************                    
                       ***************                       
                              *