• Skip to primary navigation
  • Skip to content
  • Skip to footer
Jiexin Wang
  • About
  • Research
  • Project
  • Notes
  • Gallery
    Jiexin Wang

    Jiexin Wang

    Reinforcement Learning
    Mobile & Joint Robots

    • Kyoto, JP
    • superheartheart
      (at)gmail.com
    • ResearchGate
    • GitHub
    • LinkedIn

    OThers 12 - python class

    Index

    • Public and Private

    Public and Private

    class M():
        def public(self):
            print('You can see me!')
    
        def _private(self):
            print('You cannot see me!')
    
    m=M()
    m.public()
    >>You can see me!
    m._private() ???
    >>'You cannot see me!'
    

    Tags: Others

    Categories: Programming

    Updated: December 6, 2019

    Previous Next

    You May Also Enjoy

    Generative Adversarial Nets

    abstract

    Action Selection in RL

    drawback of \(\epsilon\)-greedy

    Latex test

    [\nabla_\boldsymbol{x} J(\boldsymbol{x})]

    Model-based RL

    Background

    • Feed
    © 2024 Jiexin Wang. Powered by Jekyll & Minimal Mistakes.