Hi, I want to know Does Python have Oops concepts
Python supports classical OOP, yes. But it’s a bit unusual in that you don’t have to write code in a strictly OOP way if you don’t want to, while other languages force that on you (like C# and Java do).
See here for more info: 9. Classes — Python 3.9.2 documentation
as far as I remember it has no concepts oops
This is false. Python supports OOP, or Object Oriented Programming, concepts.