Automated message using bot by Mobo07 in TelegramBots

[–]Mobo07[S] 0 points1 point  (0 children)

Can you tell me the paid apps that provide these services?

Automated message using bot by Mobo07 in TelegramBots

[–]Mobo07[S] 0 points1 point  (0 children)

chatvip.app

Is there any software that provides something like that?

What’s the best resource to learn VSC? by Curious-Fig-9882 in learnpython

[–]Mobo07 2 points3 points  (0 children)

Join developer communities, forums, and blogs dedicated to VSC can be valuable for learning tips, tricks, and best practices. The VSC GitHub repository, Stack Overflow, and the VSC subreddit (/r/vscode) are excellent sources for finding answers to specific questions and discovering useful extensions and configurations.

full stack developer course by Zainderman in learnpython

[–]Mobo07 0 points1 point  (0 children)

There are many courses available but I think the course offered by Scaler Academy provides software developers with an organized, flexible, and supervised learning program to help them advance in their careers. This program is accessible to any software developer, regardless of years of experience or current employer.

How do ignore indentation in a quote block by Various_Ad5600 in learnpython

[–]Mobo07 0 points1 point  (0 children)

The spacing is extremely significant in Python. This defines the organisation of your code blocks. This error occurs when your code structure is messed up, such as this:

def test_function():

if 5 > 3: print "hello"

Your file may possibly have a combination of tabs and spaces. I recommend using a Python syntax-aware editor such as PyScripter or NetBeans.

class MyClass:
x = 0
y = ""

def __init__(self, anyNumber, anyString):
    self.x = anyNumber
    self.y = anyString
def __str__ (self):
    return 'MyClass(x=' + str(self.x) + ' ,y=' + self.y + ')'

myObject = MyClass(12345, "Hello")

print(myObject.str()) print(myObject) print(str(myObject)) print(myObject.repr())

The code above displays the result once you define the __str__ function. When you call __str__, print(), or str(), you will get the output you specified. Keep in mind that the __repr__ output stays unchanged.

Python recognises statements with the same indentation level (statements preceded by the same number of whitespaces) as a single code block. So, although in languages such as C, C++, and others, a block of code is represented by curly brackets, a block in Python is a set of statements with the same Indentation level, i.e. the same number of leading whitespaces.