Skip to content

Instantly share code, notes, and snippets.

@Harrix
Harrix / predprof2025-26.ipynb
Created November 19, 2025 06:03
Predprof2025-26.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
count = 0
for i in range(10, 100):
if not (not(i % 2 == 0) and (i % 13 == 0)):
count+=1
print(count)
@Harrix
Harrix / test.py
Created September 7, 2023 06:14
Моя первая программа
print("Hello world")
@Harrix
Harrix / test.py
Created September 6, 2023 08:44
Программа сложения двух чисел
a = 5
b = 2
c = a + b
print(c)
@Harrix
Harrix / test.py
Created September 5, 2023 08:59
Программа сложения двух чисел
a = 2
b = 3
c = a + b
print(c)
#pragma config(Motor, port1, leftMotor, tmotorVex393_HBridge, openLoop)
#pragma config(Motor, port2, shoulder, tmotorVex393_MC29, openLoop, reversed)
#pragma config(Motor, port3, elbow, tmotorVex393_MC29, openLoop, reversed)
#pragma config(Motor, port4, brush, tmotorVex269_MC29, openLoop)
#pragma config(Motor, port5, clow, tmotorVex393_MC29, openLoop)
#pragma config(Motor, port10, rightMotor, tmotorVex393_HBridge, openLoop, reversed)
task main ()
{