This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resume = """ | |
Резюме | |
Скрильников Микита Сергійович | |
Місце проживання: Київ, Україна | |
Телефон: +380 (XX) XXX-XX-XX | |
Електронна пошта: [email protected] | |
Професійний профіль | |
Цілеспрямований та енергійний фахівець із досвідом роботи у сфері аналізу даних та управління проектами. Володію аналітичним мисленням, організаційними навичками та прагненням до професійного зростання. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = int(input("°C: ")) | |
#b = int(input("друга сторона: ")) | |
c = a * 1.8 + 32 | |
print("℉: ", c) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> | |
<body> | |
<table border = "" bgcolor = "#800000"> | |
<tbody> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = 0 | |
for i in range(10): | |
i+=1 | |
a+=i | |
print(a) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [1, 2, 3, 4, 5] | |
b = [] | |
for i in range(1, 6): | |
b.append(a[-i]) | |
print(b) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = input('vvedit rechennya: ') | |
total_symbols = 0 | |
total_words = 0 | |
for i in a: | |
total_symbols += 1 | |
for i in a.split(): | |
total_words += 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def draw_line(a, b, c): | |
if c == True: | |
print(b*a) | |
else: | |
for i in range(a): | |
print(b) | |
draw_line(20, '@', False) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
cout << "Vvedit pershe chyslo: "; | |
float a; | |
cin >> a; | |
cout << "Vvedit druge chyslo: "; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#include <iostream> | |
#include <ctime> | |
#include <conio.h> | |
#include "ConsoleApplication5.h" | |
using namespace std; | |
int main() | |
{ | |
int window_settings(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [master] | |
GO | |
/****** Object: Database [first] Script Date: 11.04.2025 19:19:01 ******/ | |
CREATE DATABASE [first] | |
CONTAINMENT = NONE | |
ON PRIMARY | |
( NAME = N'first', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\DATA\first.mdf' , SIZE = 8192KB , MAXSIZE = UNLIMITED, FILEGROWTH = 65536KB ) | |
LOG ON | |
( NAME = N'first_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\DATA\first_log.ldf' , SIZE = 8192KB , MAXSIZE = 2048GB , FILEGROWTH = 65536KB ) | |
WITH CATALOG_COLLATION = DATABASE_DEFAULT, LEDGER = OFF |
OlderNewer