just learn python repo in my language
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())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)- 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