Aug 7, 2024
app.py
print('Я Мош Хамедани')
print('o---') # Голова собаки
print(' |') # Ноги собаки
price = 10
print(price)
input()
, чтобы получать данные от пользователей:
name = input('Как вас зовут? ')
print('Привет', name)
if condition:
do_something()
else:
do_something_else()
def greet_user(name):
print('Привет', name)
greet_user('Мош')
class Dog:
def bark(self):
print('Гав!')
open('filename.txt')
read()
, readline()
, readlines()
write()
, writelines()
close()
import module_name
from module_name import function_name
try:
code_that_might_fail()
except ExceptionType:
handle_error()