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
{ | |
"metadata": { | |
"name": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0435\u0434\u0435\u043b\u0438 jun13" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
{ | |
"metadata": { | |
"name": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0435\u0434\u0435\u043b\u0438 jul22-28" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
{ | |
"metadata": { | |
"name": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0435\u0434\u0435\u043b\u0438 jul15-21" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
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
{ | |
"metadata": { | |
"name": "\u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0435\u0434\u0435\u043b\u0438 jul8-14" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# toggle select all or deselect all objects in the scene | |
bpy.ops.object.select_all(action='TOGGLE') | |
# антогонист | |
# simply deselect all objects | |
bpy.ops.object.select_all(action='DESELECT') |
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
# http://interactivepython.org/courselib/static/thinkcspy/SimplePythonData/simpledata.html | |
#1.2 You look at the clock and it is exactly 2pm. You set an alarm to go off in 51 hours. At what time does the alarm go off? | |
print((51 % 24) + 14) | |
#1.3 Write a Python program to solve the general version of the above problem. Ask the user for the time now (in hours), and ask for the number of hours to wait. Your program should output what the time will be on the clock when the alarm goes off. | |
time_now_str = input("What time is it?" ) | |
time_now = int(time_now_str) |
NewerOlder