Skip to content

Instantly share code, notes, and snippets.

@Sinitca-Aleksandr
Created January 27, 2016 10:30
Show Gist options
  • Select an option

  • Save Sinitca-Aleksandr/67e1bfd0a0c852e1d9b3 to your computer and use it in GitHub Desktop.

Select an option

Save Sinitca-Aleksandr/67e1bfd0a0c852e1d9b3 to your computer and use it in GitHub Desktop.
Простые примеры ввода на Python
# Для ввода текстовой строки
name = input("Enter a name: ")
# Для ввода целого значения
x = int(input("What is x? "))
# Для ввода десятичных дробей
x = float(input("Write a number"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment