Which four data types are used in Python? Can you give an example of each?

In Python we use Strings, Integers, Floats and Booleans.String - text e.g. "Hello World"Integer - whole number e.g. 5Float - decimal number e.g. 2.8Boolean - binary value e.g. True, False

ES

Related Python Mentoring answers

All answers ▸

Write a recursive function to return the nth Fibonacci number in Python


How do I define a function in Python?


Create a program that takes in two numbers and returns the highest of the two


Write a recursive function that takes any integer n and prints the nth Fibonacci number.