Skip to content

Repository files navigation

learn-python

just learn python repo in my language

learn

isinya beberapa percobbaan yang kuambil dari youtube Clever Programmer https://youtu.be/4F2m91eKmts

a = "Hello World"
print (a)

s = "hello madam"
print(s[0].upper())
print(s.capitalize())

ObjectOrientedProgramming

isinya beberapa percobaan buat belajar oop programming biasanya ngambil dari kelas terbuka

class Hero: #template
    pass


hero_1 = Hero() #object
hero_2 = Hero()

hero_1.name = "sniper"
hero_1.health = 100

hero_2.name = "shironeko"
hero_2.health = 1000

print(hero_1.__dict__)
print(hero_1.name)

my roadmap

  • Variables
  • Conditions
  • Chained conditionals
  • Operators
  • Control flow
  • Loops & iterables
  • Basic data structure
  • Function
  • Mutable vs Immutable
  • Common Methods
  • File IO
  • Object Oriented Programming
  • Data structures
  • Comprehensions
  • Lambda functions
  • Map, Filter
  • Collection
  • *args & **kwargs
  • Inheritance
  • Dunder methods
  • PIP
  • Environments
  • Modules
  • Async IO

About

just learn python repo in my language

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages