Similar presentations:
Язык программирования Python
1. Питон
2. Считывание из строки
•k, n = map(int,input().split())
•a, b,c = input().split()
•a,b,c=int(a),int(b),int(c)
3. Перевод из 10 в 2, 8 и 16
a=int(input())b=bin(a)
b=str(b)
print(b[2:len(b)])
Bin – 2
oct – 8
hex - 16
4.
• a=input() – a – строка!• print(int(a,3))
5. Питон, работа с файлами
6.
input = open('sum.in', 'r')output = open('sum.out', 'w')
a = input.read().split()
print(int(a[0])+int(a[1]), file=output)
input.close()
output.close()