Skip to content

ohyoungjooung2/pycode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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

About

personal python practice examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published